Commit 0a6b5c79 authored by Daniel Lehman's avatar Daniel Lehman Committed by Alexandre Julliard

wininet: Free temporary buffer in InternetQueryOptionW loop.

parent 045d2113
......@@ -2440,6 +2440,8 @@ static WCHAR *detect_proxy_autoconfig_url_dhcp(void)
TRACE("returning %s\n", debugstr_w(ret));
break;
}
free( buf );
buf = NULL;
}
done:
......
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