RETVAL_FALSE;
} else {
if (is_unicode) {
- UChar *ubuf = buf;
+ UChar *ubuf = (UChar *)buf;
int32_t num_u16 = num_bytes >> 1;
ubuf[num_u16] = 0;
- RETURN_UNICODEL(ubuf, num_u16, 0);
+ RETURN_UNICODEL(ubuf, num_u16, 1);
} else {
buf[1] = 0;
- RETURN_STRINGL(buf, 1, 0);
+ RETURN_STRINGL(buf, 1, 1);
}
}
}
buf[num_bytes] = 0;
buf[num_bytes + 1] = 0;
- RETURN_UNICODEL(buf, num_bytes >> 1, 0);
+ RETURN_UNICODEL((UChar *)buf, num_bytes >> 1, 0);
} else {
buf[num_bytes] = 0;
if (PG(magic_quotes_runtime)) {