Commit 4ad97d40 authored by Alexandre Julliard's avatar Alexandre Julliard

msxml3: Avoid using an initialized variable.

parent f89d80c2
......@@ -767,7 +767,7 @@ static inline schema_cache* impl_from_IXMLDOMSchemaCollection2(IXMLDOMSchemaColl
static inline SCHEMA_TYPE schema_type_from_xmlDocPtr(xmlDocPtr schema)
{
xmlNodePtr root;
xmlNodePtr root = NULL;
if (schema)
root = xmlDocGetRootElement(schema);
if (root && root->ns)
......
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