Commit bc0acd1a authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

riched20: Remove redundant NULL check before heap_free (Smatch).

parent f0d8b8b1
......@@ -3879,7 +3879,7 @@ BOOL ME_IsCandidateAnURL(ME_TextEditor *editor, int sel_min, int sel_max)
return TRUE;
}
}
if (bufferW != NULL) heap_free(bufferW);
heap_free(bufferW);
return FALSE;
}
......
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