[COVERITY][SPOOLSS] Fix a resource leak

Unload the library pointed by hWinspool when the function fails.

CID 1401149
This commit is contained in:
Bișoc George 2019-03-30 14:48:44 +01:00 committed by Hermès BÉLUSCA - MAÏTO
parent d5b4570d23
commit bd5fb32b79

View file

@ -227,8 +227,13 @@ SplInitializeWinSpoolDrv(PVOID* pTable)
// Verify that all calls succeeded.
for (i = 0; i < 9; i++)
{
if (!pTable[i])
{
FreeLibrary(hWinspool);
return FALSE;
}
}
return TRUE;
}