Commit c2e0226d authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

comctl32: Removed useless NULL check (Coverity).

parent f5271ce1
......@@ -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;
}
......
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