March 27, 2026
5:17 a.m.
From: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> --- dlls/comctl32/imagelist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/comctl32/imagelist.c b/dlls/comctl32/imagelist.c index 6650e3db04b..f1d0d20b7a1 100644 --- a/dlls/comctl32/imagelist.c +++ b/dlls/comctl32/imagelist.c @@ -3664,7 +3664,7 @@ static HRESULT WINAPI ImageListImpl_Initialize(IImageList2 *iface, INT cx, INT c } /* Some applications mistakenly use a very large initial image count. Limit it to something reasonable */ - initial = min(initial, 256); + initial = min(initial, 2048); himl->cx = cx; himl->cy = cy; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10469