From 3e2f6b9d2ceeebe9de3536e9f67390061df4c197 Mon Sep 17 00:00:00 2001 From: Giannis Adamopoulos Date: Mon, 1 May 2017 18:56:03 +0000 Subject: [PATCH] [COMCTL32] Fix use of uninitialized variable. svn path=/trunk/; revision=74443 --- reactos/dll/win32/comctl32/imagelist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/comctl32/imagelist.c b/reactos/dll/win32/comctl32/imagelist.c index 052620c87f7..a47f879cf3f 100644 --- a/reactos/dll/win32/comctl32/imagelist.c +++ b/reactos/dll/win32/comctl32/imagelist.c @@ -1445,7 +1445,7 @@ ImageList_DrawIndirect (IMAGELISTDRAWPARAMS *pimldp) POINT pt; BOOL has_alpha; #ifdef __REACTOS__ - HDC hdcSaturated; + HDC hdcSaturated = NULL; #endif if (!pimldp || !(himl = pimldp->himl)) return FALSE;