xmllite: Don't fail the whole parsing process because of unsupported 'xmlns' attribute.

This commit is contained in:
Dmitry Timoshkov 2014-02-14 16:23:10 +09:00 committed by Alexandre Julliard
parent 35e23dde27
commit 5425cb3413
1 changed files with 0 additions and 3 deletions

View File

@ -2045,10 +2045,7 @@ static HRESULT reader_parse_attribute(xmlreader *reader)
}
if (strval_eq(reader, &qname, &xmlns))
{
FIXME("default namespace definitions not supported\n");
return E_NOTIMPL;
}
hr = reader_parse_eq(reader);
if (FAILED(hr)) return hr;