Commit 51f77f49 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

mshtml: Remove superfluous NULL pointer check before free (Smatch).

parent 5959e1d4
......@@ -77,10 +77,8 @@ void set_current_uri(HTMLWindow *window, IUri *uri)
window->uri = NULL;
}
if(window->url) {
SysFreeString(window->url);
window->url = NULL;
}
SysFreeString(window->url);
window->url = NULL;
if(!uri)
return;
......
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