Closed 0xxon closed 11 years ago
The line
sv_catpvn(nsv, (const char*)start, (cur - start) - 1); /* text that was ok */
in the function sv_bio_utf8_on
has to be changed to
sv_catpvn(nsv, (const char*)start, (cur - start) + 1); /* text that was ok */
Thanks, will be fixed in the next release.
The line
in the function sv_bio_utf8_on
has to be changed to