Commit 69e35009 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Add missing WIN_ReleaseWndPtr in WIN_CreateDesktopWindow.

parent 244462cc
...@@ -794,7 +794,11 @@ BOOL WIN_CreateDesktopWindow(void) ...@@ -794,7 +794,11 @@ BOOL WIN_CreateDesktopWindow(void)
WIN_SetRectangles( hwndDesktop, &rect, &rect ); WIN_SetRectangles( hwndDesktop, &rect, &rect );
WIN_SetStyle( hwndDesktop, WS_VISIBLE | WS_CLIPCHILDREN | WS_CLIPSIBLINGS ); WIN_SetStyle( hwndDesktop, WS_VISIBLE | WS_CLIPCHILDREN | WS_CLIPSIBLINGS );
if (!USER_Driver.pCreateWindow( hwndDesktop, &cs, FALSE )) return FALSE; if (!USER_Driver.pCreateWindow( hwndDesktop, &cs, FALSE ))
{
WIN_ReleaseWndPtr( pWndDesktop );
return FALSE;
}
pWndDesktop->flags |= WIN_NEEDS_ERASEBKGND; pWndDesktop->flags |= WIN_NEEDS_ERASEBKGND;
WIN_ReleaseWndPtr( pWndDesktop ); WIN_ReleaseWndPtr( pWndDesktop );
......
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