Commit b449bd51 authored by Adi Shavit's avatar Adi Shavit

Clarified code.

parent e25dca21
......@@ -1520,9 +1520,9 @@ static LRESULT CALLBACK HighGUIProc( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM
//////////////////////////////////////////////////////////////////////////
// if handle is allocated (i.e. != 0) then clean-up.
memBM && ::DeleteObject(memBM);
memDC && ::DeleteDC(memDC);
hDC && ::ReleaseDC(hwnd, hDC);
if (memBM) ::DeleteObject(memBM);
if (memDC) ::DeleteDC(memDC);
if (hDC) ::ReleaseDC(hwnd, hDC);
::CloseClipboard();
break;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment