Rewrote XMLParser error() function for the 5th time.
Bugfix: Ambiguous error message when parsing an unexpected header. svn-id: r34819
This commit is contained in:
parent
1cc3ae04cd
commit
a67c16c6f2
2 changed files with 34 additions and 40 deletions
|
@ -406,7 +406,7 @@ protected:
|
|||
_char = _stream->readByte();
|
||||
}
|
||||
|
||||
return isspace(_char) != 0 || _char == '>' || _char == '=' || _char == '/' || _char == '?';
|
||||
return isspace(_char) != 0 || _char == '>' || _char == '=' || _char == '/';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue