From: Hans Leidekker Subject: [3/3] winhttp/tests: Fix two memory leaks. Message-Id: <20170221082438.13388-3-hans@codeweavers.com> Date: Tue, 21 Feb 2017 09:24:38 +0100 Signed-off-by: Hans Leidekker --- dlls/winhttp/tests/winhttp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/winhttp/tests/winhttp.c b/dlls/winhttp/tests/winhttp.c index f45ecef766..d4406afb6b 100644 --- a/dlls/winhttp/tests/winhttp.c +++ b/dlls/winhttp/tests/winhttp.c @@ -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); -- 2.11.0