byte_character_handler() used to test that the string pointer `s`
passed to it was at the correct offset ino the input buffer. This
is not guaranteed to be the case, and definitely won't be the case
if the input encoding has a different minimum bytes-per-character
to the internal encoding.
static void
byte_character_handler(void *userData,
- const XML_Char *s,
+ const XML_Char *UNUSED_P(s),
int len)
{
#ifdef XML_CONTEXT_BYTES
fail("Character byte index incorrect");
if (XML_GetCurrentByteCount(parser) != len)
fail("Character byte count incorrect");
- if (s != buffer + offset)
- fail("Buffer position incorrect");
#else
(void)userData;
(void)s;