[SHIMENG] Prevent a nullptr dereference

This commit is contained in:
Mark Jansen
2019-01-05 13:11:35 +01:00
parent 1692ab3fe3
commit 6969e85b29
+4 -3
View File
@@ -1,8 +1,8 @@
/*
* PROJECT: ReactOS Application compatibility module
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
* PURPOSE: Shim engine core
* COPYRIGHT: Copyright 2015-2018 Mark Jansen ([email protected])
* COPYRIGHT: Copyright 2015-2019 Mark Jansen ([email protected])
*/
#define WIN32_NO_STATUS
@@ -585,7 +585,8 @@ VOID SeiAddHooks(PHOOKAPIEX hooks, DWORD dwHookCount, PSHIMINFO pShim)
}
}
pHookApi = ARRAY_Append(&HookModuleInfo->HookApis, PHOOKAPIEX);
*pHookApi = hook;
if (pHookApi)
*pHookApi = hook;
}
}