From c2e0226d2f294fa3b925e21a07014f1d63782193 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Sun, 15 Nov 2009 16:57:11 +0100 Subject: [PATCH] comctl32: Removed useless NULL check (Coverity). --- dlls/comctl32/imagelist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/comctl32/imagelist.c b/dlls/comctl32/imagelist.c index 82d2664b4af..a8101e6b4e0 100644 --- a/dlls/comctl32/imagelist.c +++ b/dlls/comctl32/imagelist.c @@ -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; }