winhttp/tests: Free the certificate context after use.

Found by valgrind.
This commit is contained in:
Hans Leidekker 2009-10-21 13:19:15 +02:00 committed by Alexandre Julliard
parent 6732d5dfd7
commit 45b6cf8355
2 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,7 @@ TOPOBJDIR = ../../..
SRCDIR = @srcdir@
VPATH = @srcdir@
TESTDLL = winhttp.dll
IMPORTS = winhttp advapi32 kernel32
IMPORTS = winhttp crypt32 advapi32 kernel32
CTESTS = \
notification.c \

View File

@ -763,6 +763,7 @@ static void test_secure_connection(void)
size = sizeof(cert);
ret = WinHttpQueryOption(req, WINHTTP_OPTION_SERVER_CERT_CONTEXT, &cert, &size );
ok(ret, "failed to retrieve certificate context %u\n", GetLastError());
CertFreeCertificateContext(cert);
size = sizeof(bitness);
ret = WinHttpQueryOption(req, WINHTTP_OPTION_SECURITY_KEY_BITNESS, &bitness, &size );