summaryrefslogtreecommitdiffstats
path: root/lib/libc/locale/wcstod.c
diff options
context:
space:
mode:
authortjr <tjr@FreeBSD.org>2004-04-07 09:47:56 +0000
committertjr <tjr@FreeBSD.org>2004-04-07 09:47:56 +0000
commit47b6d3f343e62032508f100d95214514de623db3 (patch)
tree11fa0f1538982249c0bab94e73e6639ddeab7213 /lib/libc/locale/wcstod.c
parentc3bbcd6ef65ea72fcde434bb55ca4a100f825f7c (diff)
downloadFreeBSD-src-47b6d3f343e62032508f100d95214514de623db3.zip
FreeBSD-src-47b6d3f343e62032508f100d95214514de623db3.tar.gz
Prepare to handle state-dependent encodings. This mainly involves not
taking shortcuts when it comes to storing and passing around conversion states.
Diffstat (limited to 'lib/libc/locale/wcstod.c')
-rw-r--r--lib/libc/locale/wcstod.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libc/locale/wcstod.c b/lib/libc/locale/wcstod.c
index 1f13e2f..68df1ed 100644
--- a/lib/libc/locale/wcstod.c
+++ b/lib/libc/locale/wcstod.c
@@ -43,6 +43,8 @@ __FBSDID("$FreeBSD$");
double
wcstod(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr)
{
+ static const mbstate_t initial;
+ mbstate_t mbs;
double val;
char *buf, *end;
const wchar_t *wcp;
@@ -60,20 +62,18 @@ wcstod(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr)
* the input string contains a lot of text after the number
* duplicates a lot of strtod()'s functionality and slows down the
* most common cases.
- *
- * We pass NULL as the state pointer to wcrtomb() because we don't
- * support state-dependent encodings and don't want to waste time
- * creating a zeroed mbstate_t that will not be used.
*/
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);
/* Let strtod() do most of the work for us. */
val = strtod(buf, &end);
OpenPOWER on IntegriCloud