From 30cab39056cedfe9112439cb693f1ec9b014b9ea Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Sat, 8 Oct 2011 20:10:15 +0100 Subject: [PATCH] jscript: Mark a fall-through in a switch statement. --- dlls/jscript/dispex.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/jscript/dispex.c b/dlls/jscript/dispex.c index 0d584f0e645..e40f3701d9f 100644 --- a/dlls/jscript/dispex.c +++ b/dlls/jscript/dispex.c @@ -664,6 +664,7 @@ static HRESULT WINAPI DispatchEx_InvokeEx(IDispatchEx *iface, DISPID id, LCID lc switch(wFlags) { case DISPATCH_METHOD|DISPATCH_PROPERTYGET: wFlags = DISPATCH_METHOD; + /* fall through */ case DISPATCH_METHOD: case DISPATCH_CONSTRUCT: hres = invoke_prop_func(This, This, prop, wFlags, pdp, pvarRes, &jsexcept, pspCaller);