Commit 7fe77b63 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

msxml3: Remove practically unused variable from XDR_to_XSD_doc.

parent a1d69fcb
......@@ -820,11 +820,10 @@ static xmlNodePtr XDR_E_Schema(xmlNodePtr xdr, xmlNodePtr parent, xmlChar const*
xmlDocPtr XDR_to_XSD_doc(xmlDocPtr xdr_doc, xmlChar const* nsURI)
{
xmlDocPtr xsd_doc = xmlNewDoc(NULL);
xmlNodePtr root;
TRACE("(%p)\n", xdr_doc);
root = XDR_E_Schema(get_schema((xmlNodePtr)xdr_doc), (xmlNodePtr)xsd_doc, nsURI);
XDR_E_Schema(get_schema((xmlNodePtr)xdr_doc), (xmlNodePtr)xsd_doc, nsURI);
return xsd_doc;
}
......
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