Commit 5425cb34 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

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

parent 35e23dde
......@@ -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;
......
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