1 Dec
2022
1 Dec
'22
2:51 p.m.
Rémi Bernon (@rbernon) commented about dlls/comctl32/datetime.c:
if (infoPtr->hMonthCal) DestroyWindow(infoPtr->hMonthCal); SetWindowLongPtrW( infoPtr->hwndSelf, 0, 0 ); /* clear infoPtr */ - Free (infoPtr->buflen); - Free (infoPtr->fieldRect); - Free (infoPtr->fieldspec); - Free (infoPtr); + free (infoPtr->buflen); + free (infoPtr->fieldRect); + free (infoPtr->fieldspec); + free (infoPtr);
Most of these are still allocated with Alloc above. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1625#note_18251