diff options
author | Dmitry Stogov <dmitry@php.net> | 2005-09-28 11:23:32 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2005-09-28 11:23:32 +0000 |
commit | eb48c254516c8518e23d45cca5a47ab2067dfe76 (patch) | |
tree | d4179ed8c7a8532ecff45953272850c9f859ee8b /ext/soap/php_schema.c | |
parent | 227791e5af48e2554bcd7a39b02bd80f28c0792e (diff) | |
download | php-git-eb48c254516c8518e23d45cca5a47ab2067dfe76.tar.gz |
Fixed bug #34453 (parsing http://www.w3.org/2001/xml.xsd exception)
Diffstat (limited to 'ext/soap/php_schema.c')
-rw-r--r-- | ext/soap/php_schema.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/soap/php_schema.c b/ext/soap/php_schema.c index 2446b6b67f..d6183ffc93 100644 --- a/ext/soap/php_schema.c +++ b/ext/soap/php_schema.c @@ -534,10 +534,6 @@ static int schema_union(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr unionType, sdlTyp if (node_is_equal(trav,"simpleType")) { sdlTypePtr newType, *tmp; - if (memberTypes != NULL) { - soap_error0(E_ERROR, "Parsing Schema: union has both 'memberTypes' attribute and subtypes"); - } - newType = emalloc(sizeof(sdlType)); memset(newType, 0, sizeof(sdlType)); |