Module: wine Branch: master Commit: 77cba36331878ba37bf88457d99e5e2eae0e7a16 URL: https://source.winehq.org/git/wine.git/?a=commit;h=77cba36331878ba37bf88457d... Author: Gabriel Ivăncescu <gabrielopcode(a)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(a)gmail.com> Signed-off-by: Huw Davies <huw(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)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; }