Check if dc has been created before using it.

oldstable
Eric Pouech 1999-05-22 18:41:25 +00:00 committed by Alexandre Julliard
parent d0cbe85d05
commit 578621349a
1 changed files with 7 additions and 7 deletions

View File

@ -696,7 +696,6 @@ HGLOBAL CURSORICON_Load( HINSTANCE hInstance, LPCWSTR name,
{ {
WORD resid; WORD resid;
HDC hdc; HDC hdc;
DC *dc;
if ( HIWORD(name) ) if ( HIWORD(name) )
{ {
@ -714,12 +713,13 @@ HGLOBAL CURSORICON_Load( HINSTANCE hInstance, LPCWSTR name,
} }
else resid = LOWORD(name); else resid = LOWORD(name);
hdc = CreateDCA( "DISPLAY", NULL, NULL, NULL ); hdc = CreateDCA( "DISPLAY", NULL, NULL, NULL );
dc = DC_GetDCPtr( hdc ); if (hdc) {
if (dc->funcs->pLoadOEMResource) DC *dc = DC_GetDCPtr( hdc );
h = dc->funcs->pLoadOEMResource( resid, fCursor ? if (dc->funcs->pLoadOEMResource)
OEM_CURSOR : OEM_ICON ); h = dc->funcs->pLoadOEMResource( resid, fCursor ? OEM_CURSOR : OEM_ICON );
GDI_HEAP_UNLOCK( hdc ); GDI_HEAP_UNLOCK( hdc );
DeleteDC( hdc ); DeleteDC( hdc );
}
} }
else /* Load from resource */ else /* Load from resource */