riched20: Remove redundant NULL check before heap_free (Smatch).
This commit is contained in:
parent
f0d8b8b15c
commit
bc0acd1ac2
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue