summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortjr <tjr@FreeBSD.org>2002-09-03 01:09:47 +0000
committertjr <tjr@FreeBSD.org>2002-09-03 01:09:47 +0000
commit573a3e8e5e20b467f547cc712016b11f63fc126e (patch)
treee4e83be417a5cc7f311b1bfe8b873102f613d4a5
parent6bb5aa6eaf6fa88a91a2d811fe133d4e0672a117 (diff)
downloadFreeBSD-src-573a3e8e5e20b467f547cc712016b11f63fc126e.zip
FreeBSD-src-573a3e8e5e20b467f547cc712016b11f63fc126e.tar.gz
Set errno to EILSEQ when invalid multibyte sequences are detected
(XSI extension to 1003.1-2001).
-rw-r--r--lib/libc/locale/mblen.c5
-rw-r--r--lib/libc/locale/mbtowc.c5
-rw-r--r--lib/libc/locale/wctomb.c7
3 files changed, 14 insertions, 3 deletions
diff --git a/lib/libc/locale/mblen.c b/lib/libc/locale/mblen.c
index 2544ba8..b5b92d1 100644
--- a/lib/libc/locale/mblen.c
+++ b/lib/libc/locale/mblen.c
@@ -37,6 +37,7 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
+#include <errno.h>
#include <stdlib.h>
#include <stddef.h>
#include <rune.h>
@@ -51,7 +52,9 @@ mblen(s, n)
if (s == 0 || *s == 0)
return (0); /* No support for state dependent encodings. */
- if (sgetrune(s, n, &e) == _INVALID_RUNE)
+ if (sgetrune(s, n, &e) == _INVALID_RUNE) {
+ errno = EILSEQ;
return (s - e);
+ }
return (e - s);
}
diff --git a/lib/libc/locale/mbtowc.c b/lib/libc/locale/mbtowc.c
index 67771a0..67b7b38 100644
--- a/lib/libc/locale/mbtowc.c
+++ b/lib/libc/locale/mbtowc.c
@@ -37,6 +37,7 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
+#include <errno.h>
#include <stdlib.h>
#include <stddef.h>
#include <rune.h>
@@ -53,8 +54,10 @@ mbtowc(pwc, s, n)
if (s == 0 || *s == 0)
return (0); /* No support for state dependent encodings. */
- if ((r = sgetrune(s, n, &e)) == _INVALID_RUNE)
+ if ((r = sgetrune(s, n, &e)) == _INVALID_RUNE) {
+ errno = EILSEQ;
return (s - e);
+ }
if (pwc)
*pwc = r;
return (e - s);
diff --git a/lib/libc/locale/wctomb.c b/lib/libc/locale/wctomb.c
index ca5ed8d..2a225f4 100644
--- a/lib/libc/locale/wctomb.c
+++ b/lib/libc/locale/wctomb.c
@@ -37,6 +37,7 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
+#include <errno.h>
#include <stdlib.h>
#include <limits.h>
#include <stddef.h>
@@ -58,5 +59,9 @@ wctomb(s, wchar)
}
sputrune(wchar, s, MB_CUR_MAX, &e);
- return (e ? e - s : -1);
+ if (e == NULL) {
+ errno = EILSEQ;
+ return (-1);
+ }
+ return (e - s);
}
OpenPOWER on IntegriCloud