7 Nov
2022
7 Nov
'22
9:46 a.m.
Mark Jansen (@learn-more) commented about dlls/comctl32/edit.c:
EDIT_UpdateScrollInfo(es); } if (dx && !(es->flags & EF_HSCROLL_TRACK)) - EDIT_NOTIFY_PARENT(es, EN_HSCROLL); + notify_parent(es, EN_HSCROLL); if (dy && !(es->flags & EF_VSCROLL_TRACK))
Here you are reading `es` after returning from a notification, should this be guarded? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1270#note_13373