shdocvw: Remove redundant NULL check before SysFreeString.

This commit is contained in:
Detlef Riekenberg 2008-09-21 16:10:14 +02:00 committed by Alexandre Julliard
parent 88a5bdb858
commit 3b3ac07265
1 changed files with 1 additions and 2 deletions

View File

@ -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);
}