Andrew Talbot : jscript: Mark a fall-through in a switch statement.
Module: wine Branch: master Commit: 30cab39056cedfe9112439cb693f1ec9b014b9ea URL: http://source.winehq.org/git/wine.git/?a=commit;h=30cab39056cedfe9112439cb69... Author: Andrew Talbot <andrew.talbot(a)talbotville.com> Date: Sat Oct 8 20:10:15 2011 +0100 jscript: Mark a fall-through in a switch statement. --- dlls/jscript/dispex.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/dlls/jscript/dispex.c b/dlls/jscript/dispex.c index 0d584f0..e40f370 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);
participants (1)
-
Alexandre Julliard