23 Nov
2022
23 Nov
'22
9:03 a.m.
Zhiyi Zhang (@zhiyi) commented about dlls/comctl32/imagelist.c:
if (palspace && FAILED(IStream_Read(pstm, bmi->bmiColors, palspace, NULL))) return NULL;
- bits = heap_alloc_zero(bmi->bmiHeader.biSizeImage); + bits = calloc( 1, bmi->bmiHeader.biSizeImage);
There is an extra space here. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1520#note_17143