From: George Schlossnagle Date: Fri, 18 Mar 2005 15:40:04 +0000 (+0000) Subject: doc should not be freed here, as it is used later in the code path. X-Git-Tag: php-5.0.1b1~768 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d2731eb57577619549d7bde7c5edf1215c815aec;p=php doc should not be freed here, as it is used later in the code path. --- diff --git a/ext/soap/php_schema.c b/ext/soap/php_schema.c index ef1bfbfc76..758f3bc43a 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) {