Commit 3b3ac072 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

shdocvw: Remove redundant NULL check before SysFreeString.

parent 88a5bdb8
......@@ -162,8 +162,7 @@ static ULONG WINAPI BindStatusCallback_Release(IBindStatusCallback *iface)
IOleClientSite_Release(CLIENTSITE(This->doc_host));
if(This->post_data)
GlobalFree(This->post_data);
if(This->headers)
SysFreeString(This->headers);
SysFreeString(This->headers);
heap_free(This->url);
heap_free(This);
}
......
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