79569: mshtml: Mark some fall-throughs in switch statements

buildbot at kegel.com buildbot at kegel.com
Tue Oct 4 18:12:51 CDT 2011


This is an experimental automated build and test service.
Please feel free to ignore this email while we work the kinks out.

For more info about this message, see http://wiki.winehq.org/BuildBot

The Buildbot has detected a failed build on builder runtests-default while building Wine.
Full details are available at: http://buildbot.kegel.com/builders/runtests-default/builds/89 (though maybe not for long, as I'm still reinstalling the buildbot periodically while experimenting)
BUILD FAILED: failed git

Errors:
error: patch failed: dlls/mshtml/dispex.c:559
error: dlls/mshtml/dispex.c: patch does not apply

-------------- next part --------------
From: Andrew Talbot <andrew.talbot at talbotville.com>
Subject: mshtml: Mark some fall-throughs in switch statements
Message-Id: <201110042248.42033.andrew.talbot at talbotville.com>
Date: Tue, 4 Oct 2011 22:48:41 +0100

Changelog:
    mshtml: Mark some fall-throughs in switch statements.

diff --git a/dlls/mshtml/dispex.c b/dlls/mshtml/dispex.c
index 44d0911..75b3f87 100644
--- a/dlls/mshtml/dispex.c
+++ b/dlls/mshtml/dispex.c
@@ -559,6 +559,7 @@ static HRESULT function_value(DispatchEx *dispex, LCID lcid, WORD flags, DISPPAR
     case DISPATCH_METHOD|DISPATCH_PROPERTYGET:
         if(!res)
             return E_INVALIDARG;
+        /* fall through */
     case DISPATCH_METHOD:
         hres = typeinfo_invoke(This->obj, This->info, flags, params, res, ei);
         break;
@@ -611,6 +612,7 @@ static HRESULT function_invoke(DispatchEx *This, func_info_t *func, WORD flags,
     case DISPATCH_METHOD|DISPATCH_PROPERTYGET:
         if(!res)
             return E_INVALIDARG;
+        /* fall through */
     case DISPATCH_METHOD:
         hres = typeinfo_invoke(This, func, flags, dp, res, ei);
         break;
@@ -653,6 +655,7 @@ static HRESULT function_invoke(DispatchEx *This, func_info_t *func, WORD flags,
     }
     default:
         FIXME("Unimplemented flags %x\n", flags);
+        /* fall through */
     case DISPATCH_PROPERTYPUT:
         hres = E_NOTIMPL;
     }
@@ -932,6 +935,7 @@ static HRESULT WINAPI DispatchEx_InvokeEx(IDispatchEx *iface, DISPID id, LCID lc
         case DISPATCH_METHOD|DISPATCH_PROPERTYGET:
             if(!pvarRes)
                 return E_INVALIDARG;
+            /* fall through */
         case DISPATCH_METHOD: {
             DISPID named_arg = DISPID_THIS;
             DISPPARAMS dp = {NULL, &named_arg, 0, 1};



More information about the wine-tests-results mailing list