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.