Fixed
Status Update
Comments
vi...@google.com <vi...@google.com> #2
We’ve shared this with our product and engineering teams and will continue to provide updates as more information becomes available.
en...@google.com <en...@google.com> #3
danalbert: didn't you already fix this?
da...@google.com <da...@google.com> #5
Yep.
Description
Test case:
========================= foo.c =========================
#include <stdio.h>
#include <uchar.h>
static char32_t wc;
static char16_t c16;
static mbstate_t mbs1;
static mbstate_t mbs2;
int
main (void)
{
printf ("mbrtoc32 return value = %d\n", (int) mbrtoc32 (&wc, "", 0, &mbs1));
printf ("mbrtoc16 return value = %d\n", (int) mbrtoc16 (&c16, "", 0, &mbs2));
}
========================================================
Compile and run this program (e.g. under termux).
Expected output (seen e.g. in musl libc, which is generally very standards compliant):
mbrtoc32 return value = -2
mbrtoc16 return value = -2
Actual output (on Android 11):
mbrtoc32 return value = 0
mbrtoc16 return value = 0