Call HeapAlloc() on entries before HeapReAlloc() to avoid crash on

Windows 2000.
This commit is contained in:
Pavel Roskin 2003-09-25 20:21:47 +00:00 committed by Alexandre Julliard
parent 1341e9ae2b
commit 3a82706e54
1 changed files with 3 additions and 0 deletions

View File

@ -203,6 +203,9 @@ int FetchUninstallInformation(void)
return 0;
}
if (!entries)
entries = HeapAlloc(GetProcessHeap(), 0, sizeof(uninst_entry));
strcpy(key_app, REGSTR_PATH_UNINSTALL);
strcat(key_app, "\\");
p = key_app+strlen(REGSTR_PATH_UNINSTALL)+1;