crypt32: Set ppSignerSig to NULL in case caller doesn't check return value.

This commit is contained in:
Juan Lang 2007-03-12 21:13:21 -07:00 committed by Alexandre Julliard
parent 8d31aebc5c
commit 2f7b91d7be
1 changed files with 2 additions and 0 deletions

View File

@ -238,5 +238,7 @@ BOOL WINAPI CryptVerifyMessageSignature(PCRYPT_VERIFY_MESSAGE_PARA pVerifyPara,
FIXME("stub: %p, %d, %p, %d, %p, %p, %p\n",
pVerifyPara, dwSignerIndex, pbSignedBlob, cbSignedBlob,
pbDecoded, pcbDecoded, ppSignerCert);
if (ppSignerCert)
*ppSignerCert = NULL;
return FALSE;
}