jscript: Mark a fall-through in a switch statement

Andrew Talbot andrew.talbot at talbotville.com
Sat Oct 8 14:10:15 CDT 2011


Changelog:
    jscript: Mark a fall-through in a switch statement.

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);



More information about the wine-patches mailing list