author | Rich Felker <dalias@aerifal.cx> | 2015年06月16日 05:35:31 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2015年06月16日 06:10:29 +0000 |
commit | 16f18d036d9a7bf590ee6eb86785c0a9658220b6 (patch) | |
tree | deb18b50c750e47dce2e0de0061f6de93cb11957 /src/stdio/fputws.c | |
parent | 1507ebf837334e9e07cfab1ca1c2e88449069a80 (diff) | |
download | musl-16f18d036d9a7bf590ee6eb86785c0a9658220b6.tar.gz |
-rw-r--r-- | src/stdio/fputws.c | 5 |
diff --git a/src/stdio/fputws.c b/src/stdio/fputws.c index 317d65f1..0ed02f1c 100644 --- a/src/stdio/fputws.c +++ b/src/stdio/fputws.c @@ -1,23 +1,28 @@ #include "stdio_impl.h" +#include "locale_impl.h" #include <wchar.h> int fputws(const wchar_t *restrict ws, FILE *restrict f) { unsigned char buf[BUFSIZ]; size_t l=0; + locale_t *ploc = &CURRENT_LOCALE, loc = *ploc; FLOCK(f); fwide(f, 1); + *ploc = f->locale; while (ws && (l = wcsrtombs((void *)buf, (void*)&ws, sizeof buf, 0))+1 > 1) if (__fwritex(buf, l, f) < l) { FUNLOCK(f); + *ploc = loc; return -1; } FUNLOCK(f); + *ploc = loc; return l; /* 0 or -1 */ } |