Commit 2786df23 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

winhttp/tests: Fix two memory leaks.

parent be785746
......@@ -1060,6 +1060,8 @@ static void test_secure_connection(void)
trace("lpszSignatureAlgName %s\n", wine_dbgstr_w(info.lpszSignatureAlgName));
trace("lpszEncryptionAlgName %s\n", wine_dbgstr_w(info.lpszEncryptionAlgName));
trace("dwKeySize %u\n", info.dwKeySize);
LocalFree( info.lpszSubjectInfo );
LocalFree( info.lpszIssuerInfo );
}
ret = WinHttpReceiveResponse(req, NULL);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment