Loading...
--- Libc/Libc-391.5.21/locale/FreeBSD/wcsrtombs.c.patch
+++ /dev/null
@@ -1,35 +0,0 @@
---- wcsrtombs.c.orig 2004-11-25 11:38:20.000000000 -0800
-+++ wcsrtombs.c 2005-02-18 18:36:45.000000000 -0800
-@@ -27,6 +27,8 @@
- #include <sys/cdefs.h>
- __FBSDID("$FreeBSD: src/lib/libc/locale/wcsrtombs.c,v 1.6 2004/07/21 10:54:57 tjr Exp $");
-
-+#include "xlocale_private.h"
-+
- #include <limits.h>
- #include <stdlib.h>
- #include <string.h>
-@@ -34,12 +36,18 @@
- #include "mblocal.h"
-
- size_t
-+wcsrtombs_l(char * __restrict dst, const wchar_t ** __restrict src, size_t len,
-+ mbstate_t * __restrict ps, locale_t loc)
-+{
-+ NORMALIZE_LOCALE(loc);
-+ if (ps == NULL)
-+ ps = &loc->__mbs_wcsrtombs;
-+ return (loc->__lc_ctype->__wcsnrtombs(dst, src, SIZE_T_MAX, len, ps, loc));
-+}
-+
-+size_t
- wcsrtombs(char * __restrict dst, const wchar_t ** __restrict src, size_t len,
- mbstate_t * __restrict ps)
- {
-- static mbstate_t mbs;
--
-- if (ps == NULL)
-- ps = &mbs;
-- return (__wcsnrtombs(dst, src, SIZE_T_MAX, len, ps));
-+ return wcsrtombs_l(dst, src, len, ps, __current_locale());
- }