Always destroy icon

main
Yufei Huang 2021-11-09 13:35:18 +08:00 committed by Sam Lantinga
parent 7fea557b99
commit 881f747d5c
1 changed files with 2 additions and 1 deletions

View File

@ -154,8 +154,9 @@ WIN_CreateCursor(SDL_Surface * surface, int hot_x, int hot_y)
/* The cursor returned by CreateIconIndirect does not respect system cursor size
preference, use CopyImage to duplicate the cursor with desired sizes */
hcursor = CopyImage(hicon, IMAGE_CURSOR, 0, 0, LR_DEFAULTSIZE);
DestroyIcon(hicon);
if (!hcursor) {
DestroyIcon(hicon);
WIN_SetError("CopyImage()");
return NULL;
}