Module: wine Branch: master Commit: c2e0226d2f294fa3b925e21a07014f1d63782193 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c2e0226d2f294fa3b925e21a07...
Author: Marcus Meissner marcus@jet.franken.de Date: Sun Nov 15 16:57:11 2009 +0100
comctl32: Removed useless NULL check (Coverity).
---
dlls/comctl32/imagelist.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/comctl32/imagelist.c b/dlls/comctl32/imagelist.c index 82d2664..a8101e6 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; }