Commit 2b460a6c authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

winhttp: Fix crash when proxy bypass is unset.

parent 33059008
......@@ -291,6 +291,7 @@ static BOOL should_bypass_proxy(session_t *session, LPCWSTR server)
LPCWSTR ptr;
BOOL ret = FALSE;
if (!session->proxy_bypass) return FALSE;
ptr = session->proxy_bypass;
do {
LPCWSTR tmp = ptr;
......
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