Skip to content
Snippets Groups Projects
Commit e21fc7ea authored by Tinny Ng's avatar Tinny Ng
Browse files

[Bug 14912] crashes inside UnionDatatypeValidator::isSubstitutableBy. Patch from Alberto Massari.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@174614 13f79535-47bb-0310-9956-ffa450edef68
parent 51a3affe
No related branches found
No related tags found
No related merge requests found
......@@ -57,6 +57,9 @@
/*
* $Id$
* $Log$
* Revision 1.5 2003/01/10 16:48:47 tng
* [Bug 14912] crashes inside UnionDatatypeValidator::isSubstitutableBy. Patch from Alberto Massari.
*
* Revision 1.4 2002/12/18 14:17:55 gareth
* Fix to bug #13438. When you eant a vector that calls delete[] on its members you should use RefArrayVectorOf.
*
......@@ -325,14 +328,15 @@ inline bool UnionDatatypeValidator::isSubstitutableBy(const DatatypeValidator* c
return true;
}
unsigned int memberSize = fMemberTypeValidators->size();
if (fMemberTypeValidators) {
unsigned int memberSize = fMemberTypeValidators->size();
for (unsigned int i=0; i < memberSize; i++) {
if (fMemberTypeValidators->elementAt(i)->isSubstitutableBy(toCheck)) {
return true;
for (unsigned int i=0; i < memberSize; i++) {
if (fMemberTypeValidators->elementAt(i)->isSubstitutableBy(toCheck)) {
return true;
}
}
}
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment