mirror of https://github.com/libsdl-org/SDL.git
Proper Resource Cleanup in WIN_UpdateWindowShape
mask is created but never deleted if SetWindowRgn() fails. This may lead to resource leaks.
This commit is contained in:
parent
e29ebb9f18
commit
7aba6c4c73
|
|
@ -116,6 +116,7 @@ bool WIN_UpdateWindowShape(SDL_VideoDevice *_this, SDL_Window *window, SDL_Surfa
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!SetWindowRgn(data->hwnd, mask, TRUE)) {
|
if (!SetWindowRgn(data->hwnd, mask, TRUE)) {
|
||||||
|
DeleteObject(mask);
|
||||||
return WIN_SetError("SetWindowRgn failed");
|
return WIN_SetError("SetWindowRgn failed");
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue