comctl32: Removed useless NULL check (Coverity).

oldstable
Marcus Meissner 2009-11-15 16:57:11 +01:00 committed by Alexandre Julliard
parent f5271ce1e3
commit c2e0226d2f
1 changed files with 1 additions and 1 deletions

View File

@ -673,7 +673,7 @@ ImageList_Create (INT cx, INT cy, UINT flags,
return himl;
cleanup:
if (himl) ImageList_Destroy(himl);
ImageList_Destroy(himl);
return NULL;
}