Andrew Talbot : jscript: Mark a fall-through in a switch statement.

Alexandre Julliard julliard at winehq.org
Mon Oct 10 10:25:35 CDT 2011


Module: wine
Branch: master
Commit: 30cab39056cedfe9112439cb693f1ec9b014b9ea
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=30cab39056cedfe9112439cb693f1ec9b014b9ea

Author: Andrew Talbot <andrew.talbot at 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);




More information about the wine-cvs mailing list