Commit 2919c49d authored by Alexandre Julliard's avatar Alexandre Julliard

user32: Don't cache 16-bit instance resources on the 32-bit side.

parent cecb3a99
......@@ -1177,10 +1177,8 @@ static HICON CURSORICON_Load(HINSTANCE hInstance, LPCWSTR name,
if (!hInstance) hInstance = user32_module; /* Load OEM cursor/icon */
/* Normalize hInstance (must be uniquely represented for icon cache) */
if (!HIWORD( hInstance ))
hInstance = HINSTANCE_32(GetExePtr( HINSTANCE_16(hInstance) ));
/* don't cache 16-bit instances (FIXME: should never get 16-bit instances in the first place) */
if (!HIWORD( hInstance )) loadflags &= ~LR_SHARED;
/* Get directory resource ID */
......
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