oleview: Fix a memory leak.

This commit is contained in:
Andrew Talbot 2007-10-17 21:15:53 +01:00 committed by Alexandre Julliard
parent 62894b488d
commit c8cb3b5fbb
1 changed files with 5 additions and 1 deletions

View File

@ -151,7 +151,11 @@ 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) return FALSE;
if(!hWndCreated)
{
HeapFree(GetProcessHeap(), 0, pane);
return FALSE;
}
pane->left = NULL;
pane->right = NULL;