summaryrefslogtreecommitdiffstats
path: root/lib/libc/locale/wcstof.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/locale/wcstof.c')
-rw-r--r--lib/libc/locale/wcstof.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/libc/locale/wcstof.c b/lib/libc/locale/wcstof.c
index 909db0b..ba238d4 100644
--- a/lib/libc/locale/wcstof.c
+++ b/lib/libc/locale/wcstof.c
@@ -37,6 +37,8 @@ __FBSDID("$FreeBSD$");
float
wcstof(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr)
{
+ static const mbstate_t initial;
+ mbstate_t mbs;
float val;
char *buf, *end;
const wchar_t *wcp;
@@ -46,14 +48,16 @@ wcstof(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr)
nptr++;
wcp = nptr;
- if ((len = wcsrtombs(NULL, &wcp, 0, NULL)) == (size_t)-1) {
+ mbs = initial;
+ if ((len = wcsrtombs(NULL, &wcp, 0, &mbs)) == (size_t)-1) {
if (endptr != NULL)
*endptr = (wchar_t *)nptr;
return (0.0);
}
if ((buf = malloc(len + 1)) == NULL)
return (0.0);
- wcsrtombs(buf, &wcp, len + 1, NULL);
+ mbs = initial;
+ wcsrtombs(buf, &wcp, len + 1, &mbs);
val = strtof(buf, &end);
OpenPOWER on IntegriCloud