msxml3: Remove dead code: break after return (Smatch).

Michael Stefaniuc mstefani at redhat.de
Wed Nov 24 16:11:44 CST 2010


---
 dlls/msxml3/schema.c |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/dlls/msxml3/schema.c b/dlls/msxml3/schema.c
index 17439a5..dca8838 100644
--- a/dlls/msxml3/schema.c
+++ b/dlls/msxml3/schema.c
@@ -589,7 +589,6 @@ HRESULT dt_validate(XDR_DT dt, xmlChar const* content)
     {
         case DT_INVALID:
             return E_FAIL;
-            break;
         case DT_BIN_BASE64:
         case DT_BIN_HEX:
         case DT_BOOLEAN:
@@ -636,11 +635,9 @@ HRESULT dt_validate(XDR_DT dt, xmlChar const* content)
                 hr = S_OK;
             }
             return hr;
-            break;
         default:
             FIXME("need to handle dt:%s\n", dt_to_str(dt));
             return S_OK;
-            break;
     }
 }
 
-- 
1.7.3.2



More information about the wine-patches mailing list