From 3e4ea8305df3d26adfe3b848a3ba47ee3cf9fa6f Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Fri, 18 Mar 2005 18:31:25 +0000 Subject: [PATCH] doc should not be freed here, as it is used later in the code path. --- ext/soap/php_schema.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ext/soap/php_schema.c b/ext/soap/php_schema.c index 0fa5c4a08e..1a7e4d413f 100644 --- a/ext/soap/php_schema.c +++ b/ext/soap/php_schema.c @@ -135,7 +135,6 @@ static void schema_load_file(sdlCtx *ctx, xmlAttrPtr ns, xmlChar *location, xmlA new_tns = get_attribute(schema->properties, "targetNamespace"); if (new_tns == NULL) { if (tns != NULL) { - xmlFreeDoc(doc); xmlSetProp(schema, "targetNamespace", tns->children->content); } } else if (tns != NULL && strcmp(tns->children->content,new_tns->children->content) != 0) { -- 2.40.0