From 2896c02254073832a16ba2c1ebd2f7e739d599ca Mon Sep 17 00:00:00 2001 From: Austin English Date: Wed, 24 Sep 2008 13:08:40 -0500 Subject: [PATCH] comctl32: comboex - fix some unintialized variables --- dlls/comctl32/comboex.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/dlls/comctl32/comboex.c b/dlls/comctl32/comboex.c index 32b18cc..49f19d7 100644 --- a/dlls/comctl32/comboex.c +++ b/dlls/comctl32/comboex.c @@ -570,6 +570,11 @@ static BOOL COMBOEX_GetItemA (COMBOEX_INFO *infoPtr, COMBOBOXEXITEMA *cit) TRACE("(...)\n"); + tmpcit.iImage = cit->iImage; + tmpcit.iSelectedImage = cit->iSelectedImage; + tmpcit.iOverlay = cit->iOverlay; + tmpcit.iIndent = cit->iIndent; + tmpcit.lParam = 0; tmpcit.mask = cit->mask; tmpcit.iItem = cit->iItem; tmpcit.pszText = 0; -- 1.5.3.6