mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-10-21 14:53:44 +03:00
fixed the main issues reported by Peter Breitenlohner cleanup speedup
* catalog.c: fixed the main issues reported by Peter Breitenlohner * parser.c: cleanup * valid.c: speedup patch from Petr Pajas Daniel
This commit is contained in:
5
parser.c
5
parser.c
@@ -3143,11 +3143,6 @@ get_more_space:
|
||||
return;
|
||||
}
|
||||
get_more:
|
||||
#if 0
|
||||
while (((*in >= 0x20) && (*in != '<') && (*in != ']') &&
|
||||
(*in != '&') && (*in <= 0x7F)) || (*in == 0x09))
|
||||
in++;
|
||||
#endif
|
||||
while (((*in > ']') && (*in <= 0x7F)) ||
|
||||
((*in > '&') && (*in < '<')) ||
|
||||
((*in > '<') && (*in < ']')) ||
|
||||
|
Reference in New Issue
Block a user