sandygao 2002/09/30 07:10:15
Modified: java/src/org/apache/xerces/impl/xs XMLSchemaValidator.java
Log:
The array for property defaults has one less entry than that of the property
names. This causes ArrayIndexOutOfBoundsException when the
getPropertyDefault methods is called for the JAXP schema language property.
Revision Changes Path
1.112 +2 -1
xml-xerces/java/src/org/apache/xerces/impl/xs/XMLSchemaValidator.java
Index: XMLSchemaValidator.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xs/XMLSchemaValidator.java,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -r1.111 -r1.112
--- XMLSchemaValidator.java 27 Sep 2002 14:15:09 -0000 1.111
+++ XMLSchemaValidator.java 30 Sep 2002 14:10:15 -0000 1.112
@@ -267,6 +267,7 @@
null,
null,
null,
+ null,
};
// this is the number of valuestores of each kind
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]