Commit 5006da3b authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

oleview: Fixed bad error check.

parent 063ddfee
......@@ -151,7 +151,7 @@ BOOL CreatePanedWindow(HWND hWnd, HWND *hWndCreated, HINSTANCE hInst)
pane = HeapAlloc(GetProcessHeap(), 0, sizeof(PANE));
*hWndCreated = CreateWindow(wszPaneClass, NULL, WS_CHILD|WS_VISIBLE,
CW_USEDEFAULT, CW_USEDEFAULT, 0, 0, hWnd, (HMENU)pane, hInst, NULL);
if(!hWndCreated)
if(!*hWndCreated)
{
HeapFree(GetProcessHeap(), 0, pane);
return FALSE;
......
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