Added missing return in winpr_Digest_New

(cherry picked from commit 0ea1957da5)
This commit is contained in:
akallabeth 2022-10-20 15:21:03 +02:00 committed by David Fort
parent 525a7c8d16
commit 73c9755743

View File

@ -434,6 +434,7 @@ WINPR_DIGEST_CTX* winpr_Digest_New(void)
fail:
winpr_Digest_Free(ctx);
return NULL;
}
#if defined(WITH_OPENSSL)