Added DomitoFreePortableExecutableDigest
This commit is contained in:
@ -363,6 +363,20 @@ cleanup:
|
||||
return status;
|
||||
}
|
||||
|
||||
_IRQL_requires_max_(DISPATCH_LEVEL)
|
||||
void
|
||||
DomitoFreePortableExecutableDigest(
|
||||
_In_ PVOID pDigestOut
|
||||
)
|
||||
{
|
||||
if (!pDigestOut)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
ExFreePoolWithTag(pDigestOut, DOMITO_POOL_TAG);
|
||||
}
|
||||
|
||||
_Success_(return == STATUS_SUCCESS)
|
||||
_Must_inspect_result_
|
||||
_IRQL_requires_max_(PASSIVE_LEVEL)
|
||||
|
Reference in New Issue
Block a user