From c9a8d3bd8906932130cd98b667574031895f83f0 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Sat, 8 Oct 2011 17:51:45 +0100 Subject: [PATCH] oleaut32: Mark some fall-throughs in a switch statement. --- dlls/oleaut32/typelib2.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dlls/oleaut32/typelib2.c b/dlls/oleaut32/typelib2.c index d7614917470..fd4e5472923 100644 --- a/dlls/oleaut32/typelib2.c +++ b/dlls/oleaut32/typelib2.c @@ -899,11 +899,13 @@ static HRESULT ctl2_encode_variant( mask = 0x3ffffff; if(V_UI4(&v)>0x3ffffff) break; + /* fall through */ case VT_I1: case VT_UI1: case VT_BOOL: - if(!mask) - mask = 0xff; + if(!mask) + mask = 0xff; + /* fall through */ case VT_I2: case VT_UI2: if(!mask)