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

This commit is contained in:
Michael Stefaniuc 2010-11-24 23:11:44 +01:00 committed by Alexandre Julliard
parent 459c29ba34
commit 828fff8c8b
1 changed files with 0 additions and 3 deletions

View File

@ -590,7 +590,6 @@ HRESULT dt_validate(XDR_DT dt, xmlChar const* content)
{ {
case DT_INVALID: case DT_INVALID:
return E_FAIL; return E_FAIL;
break;
case DT_BIN_BASE64: case DT_BIN_BASE64:
case DT_BIN_HEX: case DT_BIN_HEX:
case DT_BOOLEAN: case DT_BOOLEAN:
@ -637,11 +636,9 @@ HRESULT dt_validate(XDR_DT dt, xmlChar const* content)
hr = S_OK; hr = S_OK;
} }
return hr; return hr;
break;
default: default:
FIXME("need to handle dt:%s\n", dt_to_str(dt)); FIXME("need to handle dt:%s\n", dt_to_str(dt));
return S_OK; return S_OK;
break;
} }
} }