Do not allocate any USER data on the system heap.
diff --git a/windows/cursoricon.c b/windows/cursoricon.c
index 19f5d19..0ba9df4 100644
--- a/windows/cursoricon.c
+++ b/windows/cursoricon.c
@@ -174,7 +174,7 @@
*/
static void CURSORICON_AddSharedIcon( HMODULE hModule, HRSRC hRsrc, HRSRC hGroupRsrc, HANDLE handle )
{
- ICONCACHE *ptr = HeapAlloc( SystemHeap, 0, sizeof(ICONCACHE) );
+ ICONCACHE *ptr = HeapAlloc( GetProcessHeap(), 0, sizeof(ICONCACHE) );
if ( !ptr ) return;
ptr->hModule = hModule;
@@ -234,7 +234,7 @@
*ptr = freePtr->next;
GlobalFree16( freePtr->handle );
- HeapFree( SystemHeap, 0, freePtr );
+ HeapFree( GetProcessHeap(), 0, freePtr );
continue;
}
ptr = &(*ptr)->next;