From 828fff8c8bcd3595f51c1073600a38af9616b486 Mon Sep 17 00:00:00 2001
From: Michael Stefaniuc <mstefani@redhat.de>
Date: Wed, 24 Nov 2010 23:11:44 +0100
Subject: [PATCH] msxml3: Remove dead code: break after return (Smatch).

---
 dlls/msxml3/schema.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/dlls/msxml3/schema.c b/dlls/msxml3/schema.c
index cddbc5c82a6..fa609a9bc17 100644
--- a/dlls/msxml3/schema.c
+++ b/dlls/msxml3/schema.c
@@ -590,7 +590,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:
@@ -637,11 +636,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;
     }
 }
 
-- 
GitLab