dbertoni 2005/04/28 17:23:52
Modified: c/src/xercesc/util/regx RegularExpression.hpp
Log:
Patch for Jira issue XERCESC-1390.
Revision Changes Path
1.21 +2 -2 xml-xerces/c/src/xercesc/util/regx/RegularExpression.hpp
Index: RegularExpression.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/regx/RegularExpression.hpp,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- RegularExpression.hpp 5 Apr 2005 18:18:34 -0000 1.20
+++ RegularExpression.hpp 29 Apr 2005 00:23:52 -0000 1.21
@@ -541,7 +541,7 @@
ret = match(context, op->elementAt(i), offset, direction);
- if (ret == context->fLimit)
+ if (ret >= 0 && ret <= context->fLimit)
return ret;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]