15 Dec
2022
15 Dec
'22
6:55 p.m.
Alex Henrie (@alexhenrie) commented about dlls/urlmon/sec_mgr.c:
if (used == allocated) { LPDWORD new_data;
+ allocated *= 2; new_data = realloc(data, allocated * sizeof(DWORD)); if (!new_data) goto cleanup; - memset(new_data + allocated, 0, allocated * sizeof(DWORD));
data = new_data; - allocated *= 2; +
Please just delete the line. It looks weird to have a blank line before a closing brace. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1774#note_19708