summaryrefslogtreecommitdiffstats
path: root/lib/libc/locale/wctomb.c
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 /lib/libc/locale/wctomb.c
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).
Diffstat (limited to 'lib/libc/locale/wctomb.c')
-rw-r--r--lib/libc/locale/wctomb.c7
1 files changed, 6 insertions, 1 deletions
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