From b2eee6e0019ddf39b5a8901bcbdb50f8a43784db Mon Sep 17 00:00:00 2001 From: Trent Waddington Date: Tue, 28 Aug 2007 23:17:47 +1000 Subject: Fix some memory I was leaking. --- dlls/user32/cursoricon.c | 4 +++- dlls/winex11.drv/mouse.c | 1 + 2 files changed, 4 insertions(+), 1 deletions(-) diff --git a/dlls/user32/cursoricon.c b/dlls/user32/cursoricon.c index 22d699c..7ddf413 100644 --- a/dlls/user32/cursoricon.c +++ b/dlls/user32/cursoricon.c @@ -1042,8 +1042,10 @@ static HICON CURSORICON_LoadFromFile( LPCWSTR filename, if (isAnimatedCursor(bits)) { - return CreateIconFromResourceEx( bits, filesize, !fCursor, 0x00030000, + hIcon = CreateIconFromResourceEx( bits, filesize, !fCursor, 0x00030000, 0, 0, loadflags ); + UnmapViewOfFile( bits ); + return hIcon; } dir = (CURSORICONFILEDIR*) bits; diff --git a/dlls/winex11.drv/mouse.c b/dlls/winex11.drv/mouse.c index a9991e2..44eb390 100644 --- a/dlls/winex11.drv/mouse.c +++ b/dlls/winex11.drv/mouse.c @@ -571,6 +571,7 @@ static Cursor create_xcursor_cursor( Display *display, CURSORICONINFO *ptr ) if (!image) { pXcursorImagesDestroy( images ); + GlobalUnlock16(hNext); return 0; } -- 1.4.4.3