oleview: Fixed bad error check.

This commit is contained in:
Marcus Meissner 2009-09-04 22:42:47 +02:00 committed by Alexandre Julliard
parent 063ddfeead
commit 5006da3bb7
1 changed files with 1 additions and 1 deletions

View File

@ -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;