[PATCH 0/1] MR1953: comctl32: Avoid mismatching heap when in ProgressWindowProc.
13 Jan
13 Jan
7:13 a.m.
New subject: [PATCH 1/1] comctl32: Avoid mismatching heap when in ProgressWindowProc.
From: Rémi Bernon <rbernon(a)codeweavers.com> --- dlls/comctl32/progress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/comctl32/progress.c b/dlls/comctl32/progress.c index a329995a40e..6d556f10094 100644 --- a/dlls/comctl32/progress.c +++ b/dlls/comctl32/progress.c @@ -576,7 +576,7 @@ static LRESULT WINAPI ProgressWindowProc(HWND hwnd, UINT message, case WM_DESTROY: TRACE("Progress Ctrl destruction, hwnd=%p\n", hwnd); - free (infoPtr); + Free (infoPtr); SetWindowLongPtrW(hwnd, 0, 0); theme = GetWindowTheme (hwnd); CloseThemeData (theme); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/1953
1147
Age (days ago)
1147
Last active (days ago)
1 comments
1 participants
participants (1)
-
Rémi Bernon