mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +03:00
apply patch from Andrew Tosh to fix behaviour when '.' is used in a
* xmlregexp.c: apply patch from Andrew Tosh to fix behaviour when '.' is used in a posCharGroup * test/schemas/poschargrp0_0.* result/schemas/poschargrp0_0_0*: added the test to the regression suite Daniel svn path=/trunk/; revision=3687
This commit is contained in:
@ -5052,7 +5052,7 @@ xmlFAParseCharRange(xmlRegParserCtxtPtr ctxt) {
|
||||
static void
|
||||
xmlFAParsePosCharGroup(xmlRegParserCtxtPtr ctxt) {
|
||||
do {
|
||||
if ((CUR == '\\') || (CUR == '.')) {
|
||||
if (CUR == '\\') {
|
||||
xmlFAParseCharClassEsc(ctxt);
|
||||
} else {
|
||||
xmlFAParseCharRange(ctxt);
|
||||
|
Reference in New Issue
Block a user