summaryrefslogtreecommitdiffstats
path: root/lib/libc/iconv/citrus_memstream.c
diff options
context:
space:
mode:
authortijl <tijl@FreeBSD.org>2014-04-15 09:49:44 +0000
committertijl <tijl@FreeBSD.org>2014-04-15 09:49:44 +0000
commit1cbbe6f2d4f3072dbd2c8607cd56bea514637d82 (patch)
treea9679901144507309a5b71a4e0ae37b76368fb52 /lib/libc/iconv/citrus_memstream.c
parente8ab551e5fb0c3b4da36ce4cd1879d73dd2cdf26 (diff)
downloadFreeBSD-src-1cbbe6f2d4f3072dbd2c8607cd56bea514637d82.zip
FreeBSD-src-1cbbe6f2d4f3072dbd2c8607cd56bea514637d82.tar.gz
MFC r263986:
- In the libiconv module for ISO 2022 restore the original order of the fields of a private struct such that variables of this type are initialised correctly. Fixes conversion from ISO 2022. Also do this in the BIG5 module to prevent similar errors in the future. - In the libiconv module for EUC-TW replace 2^cs with 1<<cs. Fixes conversion from EUC-TW. - Synchronise iconv code with NetBSD. In most cases this only updates the RCS id because the changes are already there or are NetBSD specific. + libc/iconv/citrus_csmapper.c: Add a comment. + libc/iconv/citrus_db_factory.c: Remove put16(). + libc/iconv/citrus_iconv.c: Return EINVAL on error. + libc/iconv/citrus_mapper.c: Return EINVAL on error. + libc/iconv/citrus_memstream.c: Fix type of a variable. + libc/iconv/citrus_prop.h: Sync definition of _CITRUS_PROP_HINT_END. + libc/iconv/citrus_stdenc.c: Return EINVAL on error. + libiconv_modules/mapper_std/citrus_mapper_std.c: Plug memory leak. Obtained from: NetBSD
Diffstat (limited to 'lib/libc/iconv/citrus_memstream.c')
-rw-r--r--lib/libc/iconv/citrus_memstream.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/iconv/citrus_memstream.c b/lib/libc/iconv/citrus_memstream.c
index d7ad4fd..f99a19d 100644
--- a/lib/libc/iconv/citrus_memstream.c
+++ b/lib/libc/iconv/citrus_memstream.c
@@ -1,5 +1,5 @@
/* $FreeBSD$ */
-/* $NetBSD: citrus_memstream.c,v 1.4 2009/02/03 05:02:12 lukem Exp $ */
+/* $NetBSD: citrus_memstream.c,v 1.5 2012/03/13 21:13:31 christos Exp $ */
/*-
* Copyright (c)2003 Citrus Project,
@@ -44,8 +44,7 @@ _citrus_memory_stream_getln(struct _citrus_memory_stream * __restrict ms,
size_t * __restrict rlen)
{
const uint8_t *h, *p;
- size_t ret;
- int i;
+ size_t i, ret;
if (ms->ms_pos>=_region_size(&ms->ms_region))
return (NULL);
OpenPOWER on IntegriCloud