Commit 036db280 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

urlmon: Remove a redundant NULL check before free (Smatch).

parent 78ebd8f7
......@@ -528,10 +528,8 @@ static void HttpProtocol_close_connection(Protocol *prot)
This->http_negotiate = NULL;
}
if(This->full_header) {
heap_free(This->full_header);
This->full_header = NULL;
}
heap_free(This->full_header);
This->full_header = NULL;
}
static void HttpProtocol_on_error(Protocol *prot, DWORD error)
......
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