=?UTF-8?Q?Gabriel=20Iv=C4=83ncescu=20?=: comctl32/listbox: Return proper value for LB_INITSTORAGE.

Alexandre Julliard julliard at winehq.org
Thu Feb 7 16:20:56 CST 2019


Module: wine
Branch: master
Commit: 77cba36331878ba37bf88457d99e5e2eae0e7a16
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=77cba36331878ba37bf88457d99e5e2eae0e7a16

Author: Gabriel Ivăncescu <gabrielopcode at gmail.com>
Date:   Thu Feb  7 15:12:23 2019 +0200

comctl32/listbox: Return proper value for LB_INITSTORAGE.

Signed-off-by: Gabriel Ivăncescu <gabrielopcode at gmail.com>
Signed-off-by: Huw Davies <huw at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/comctl32/listbox.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/comctl32/listbox.c b/dlls/comctl32/listbox.c
index 4289aaa..c92c2a2 100644
--- a/dlls/comctl32/listbox.c
+++ b/dlls/comctl32/listbox.c
@@ -709,7 +709,7 @@ static LRESULT LISTBOX_InitStorage( LB_DESCR *descr, INT nb_items )
 
     if (new_size > descr->items_size && !resize_storage(descr, new_size))
         return LB_ERRSPACE;
-    return LB_OKAY;
+    return descr->items_size;
 }
 
 




More information about the wine-cvs mailing list