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

oldstable
Michael Stefaniuc 2008-06-21 00:18:40 +02:00 committed by Alexandre Julliard
parent f0d8b8b15c
commit bc0acd1ac2
1 changed files with 1 additions and 1 deletions

View File

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