Commit 828fff8c authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

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

parent 459c29ba
......@@ -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;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment