提交 4ca44215 编写于 作者: R Rich Felker

fix failure of mbsrtowcs to record stop position when dest is full

上级 9b732fe5
......@@ -54,7 +54,10 @@ resume0:
wn--;
c = 0;
} else for (;;) {
if (!wn) return wn0;
if (!wn) {
*src = (const void *)s;
return wn0;
}
if (*s-1u < 0x7f && (uintptr_t)s%4 == 0) {
while (wn>=4 && !(( *(uint32_t*)s | *(uint32_t*)s-0x01010101) & 0x80808080)) {
*ws++ = *s++;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册