15 Jul
2023
15 Jul
'23
7:50 p.m.
Esme Povirk (@madewokherd) commented about dlls/gdiplus/tests/image.c:
status = GdipGetPropertySize(image, &prop_size, &prop_count); expect(expected, status);
+ prop_item = HeapAlloc(GetProcessHeap(), 0, prop_size); + status = GdipGetAllPropertyItems(image, prop_size, prop_count, NULL); + expect(InvalidParameter, status); + status = GdipGetAllPropertyItems(image, prop_size, prop_count, NULL); + expect(InvalidParameter, status);
This looks like the same test repeated, is that intentional? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3302#note_39085