[PATCH 0/1] MR4707: oleaut32/typelib: Add a missing break (Coverity).
This does not change set values. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/4707
From: Nikolay Sivov <nsivov(a)codeweavers.com> Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com> --- dlls/oleaut32/typelib.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/oleaut32/typelib.c b/dlls/oleaut32/typelib.c index f412074bd21..d920ee7c0cc 100644 --- a/dlls/oleaut32/typelib.c +++ b/dlls/oleaut32/typelib.c @@ -2633,6 +2633,7 @@ static void TLB_fix_typeinfo_ptr_size(ITypeInfoImpl *info) case VT_VARIANT: info->typeattr.cbSizeInstance = sizeof(VARIANT); info->typeattr.cbAlignment = sizeof(void *); + break; default: if(info->typeattr.cbSizeInstance < sizeof(void*)) info->typeattr.cbAlignment = info->typeattr.cbSizeInstance; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/4707
This merge request was approved by Huw Davies. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/4707
participants (3)
-
Huw Davies (@huw) -
Nikolay Sivov -
Nikolay Sivov (@nsivov)