mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Fix handling of XSD with empty namespace
An empty namespace means no default namespace. Fixes #303.
This commit is contained in:
parent
f480f7509c
commit
1c7d91abe4
1
result/schemas/issue303_0_0
Normal file
1
result/schemas/issue303_0_0
Normal file
@ -0,0 +1 @@
|
||||
./test/schemas/issue303_0.xml validates
|
1
test/schemas/issue303_0.xml
Normal file
1
test/schemas/issue303_0.xml
Normal file
@ -0,0 +1 @@
|
||||
<outer> <inner><a>1</a><b>2</b></inner> <c>3</c> </outer>
|
19
test/schemas/issue303_0.xsd
Normal file
19
test/schemas/issue303_0.xsd
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0"?>
|
||||
<xs:schema id="foo" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:element name="inner">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="a" type="xs:double" minOccurs="1" />
|
||||
<xs:element name="b" type="xs:double" minOccurs="1" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="outer">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="inner" minOccurs="0" maxOccurs="unbounded" />
|
||||
<xs:element name="c" type="xs:double" minOccurs="1" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:schema>
|
@ -5899,7 +5899,7 @@ xmlSchemaPValAttrNodeQNameValue(xmlSchemaParserCtxtPtr ctxt,
|
||||
|
||||
if (!strchr((char *) value, ':')) {
|
||||
ns = xmlSearchNs(attr->doc, attr->parent, NULL);
|
||||
if (ns)
|
||||
if (ns && ns->href && ns->href[0])
|
||||
*uri = xmlDictLookup(ctxt->dict, ns->href, -1);
|
||||
else if (schema->flags & XML_SCHEMAS_INCLUDING_CONVERT_NS) {
|
||||
/* TODO: move XML_SCHEMAS_INCLUDING_CONVERT_NS to the
|
||||
|
Loading…
x
Reference in New Issue
Block a user