Commit c9a8d3bd authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

oleaut32: Mark some fall-throughs in a switch statement.

parent c228ecba
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment