Commit a5e9bf73 authored by Jeremy White's avatar Jeremy White Committed by Alexandre Julliard

Fixed exit status in some cases.

parent 8a326138
......@@ -95,7 +95,7 @@ void ListUninstallPrograms(void)
int i;
if (! FetchUninstallInformation())
exit(1);
return;
for (i=0; i < numentries; i++)
printf("%s|||%s\n", entries[i].key, entries[i].descr);
......@@ -107,7 +107,7 @@ void RemoveSpecificProgram(char *name)
int i;
if (! FetchUninstallInformation())
exit(1);
return;
for (i=0; i < numentries; i++)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment