Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdlib/mblen_r.c')
-rw-r--r--newlib/libc/stdlib/mblen_r.c20
1 files changed, 14 insertions, 6 deletions
diff --git a/newlib/libc/stdlib/mblen_r.c b/newlib/libc/stdlib/mblen_r.c
index cff739524..1d6659743 100644
--- a/newlib/libc/stdlib/mblen_r.c
+++ b/newlib/libc/stdlib/mblen_r.c
@@ -54,14 +54,22 @@ _DEFUN (_mblen_r, (r, s, n, state),
mbstate_t *state)
{
#ifdef MB_CAPABLE
+ int retval;
+ retval = _mbtowc_r (r, NULL, s, n, state);
- return _mbtowc_r (r, NULL, s, n, state);
+ if (retval < 0)
+ {
+ state->__count = 0;
+ return -1;
+ }
+
+ return retval;
#else /* not MB_CAPABLE */
- if (s == NULL || *s == '\0')
- return 0;
- if (n == 0)
- return -1;
- return 1;
+ if (s == NULL || *s == '\0')
+ return 0;
+ if (n == 0)
+ return -1;
+ return 1;
#endif /* not MB_CAPABLE */
}