Commit fd5a8a9d authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

xmllite: Length is optional in IXmlReader::GetQualifiedName.

parent 412a070e
......@@ -2671,7 +2671,7 @@ static HRESULT WINAPI xmlreader_GetQualifiedName(IXmlReader* iface, LPCWSTR *nam
TRACE("(%p)->(%p %p)\n", This, name, len);
*name = This->strvalues[StringValue_QualifiedName].str;
*len = This->strvalues[StringValue_QualifiedName].len;
if (len) *len = This->strvalues[StringValue_QualifiedName].len;
return S_OK;
}
......
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