Module: wine Branch: master Commit: 1eca63440d54cbaa0be8616eb0d153205f4909d1 URL: https://source.winehq.org/git/wine.git/?a=commit;h=1eca63440d54cbaa0be8616eb...
Author: Gijs Vermeulen gijsvrm@gmail.com Date: Tue May 21 21:22:30 2019 +0200
crypt32/tests: Fix some memory leaks (Valgrind).
Signed-off-by: Gijs Vermeulen gijsvrm@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/crypt32/tests/cert.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/dlls/crypt32/tests/cert.c b/dlls/crypt32/tests/cert.c index e4f4c59..880ae72 100644 --- a/dlls/crypt32/tests/cert.c +++ b/dlls/crypt32/tests/cert.c @@ -1736,6 +1736,7 @@ static void testGetIssuerCert(void) CertFreeCertificateContext(child); CertFreeCertificateContext(cert1); CertFreeCertificateContext(cert2); + CertFreeCertificateContext(cert3); CertCloseStore(store, 0); HeapFree(GetProcessHeap(), 0, certencoded);
@@ -1750,6 +1751,7 @@ static void testGetIssuerCert(void) ok(!parent, "Expected NULL\n"); ok(GetLastError() == CRYPT_E_SELF_SIGNED, "Expected CRYPT_E_SELF_SIGNED, got %08X\n", GetLastError()); + CertFreeCertificateContext(cert1); CertCloseStore(store, 0); }