[SERVMAN] fix memory leak CID 1322153

svn path=/trunk/; revision=68984
This commit is contained in:
Christoph von Wittich 2015-09-04 08:29:08 +00:00
parent 1c2342e67a
commit a7d123306b

View file

@ -350,7 +350,10 @@ RunActionWithProgress(HWND hParent,
/* Exit early if the user decided not to stop the dependants */
if (StopDepends == FALSE)
{
HeapFree(GetProcessHeap(), 0, ServiceList);
return FALSE;
}
}
}