about summary refs log tree commit diff
path: root/manual/charset.texi
diff options
context:
space:
mode:
Diffstat (limited to 'manual/charset.texi')
-rw-r--r--manual/charset.texi3
1 files changed, 2 insertions, 1 deletions
diff --git a/manual/charset.texi b/manual/charset.texi
index 227dcc16ea..aaf379dd2b 100644
--- a/manual/charset.texi
+++ b/manual/charset.texi
@@ -688,8 +688,9 @@ mbstouwcs (const char *s)
   wchar_t *wcp = result;
   wchar_t tmp[1];
   mbstate_t state;
-  memset (&state, '\0', sizeof (state));
   size_t nbytes;
+
+  memset (&state, '\0', sizeof (state));
   while ((nbytes = mbrtowc (tmp, s, len, &state)) > 0)
     @{
       if (nbytes >= (size_t) -2)