23 Jun
2023
23 Jun
'23
7:43 a.m.
Hans Leidekker (@hans) commented about dlls/msi/database.c:
chars_left--; }
+ /* + * make sure this line has the same number of entries as there are columns + * which are indicated by the first database line. + */ + if (*num_entries && *num_entries != count) + return ERROR_FUNCTION_FAILED; + *entries = malloc(count * sizeof(WCHAR *)); if (!*entries) - return; + return ERROR_OUTOFMEMORY;;
Extra semi-colon. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3133#note_36625