about summary refs log tree commit diff
path: root/iconvdata/euc-kr.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-07-25 15:03:25 +0000
committerUlrich Drepper <drepper@redhat.com>1999-07-25 15:03:25 +0000
commit788e8e7c221825916e6ab11f0079d4c5ede8a057 (patch)
tree5ce6c7cb89a59e3b27a5b35f0de19671a7810d31 /iconvdata/euc-kr.c
parentbd805dba0ea2ad535e9ec2b4f53b9a61789f9cee (diff)
downloadglibc-788e8e7c221825916e6ab11f0079d4c5ede8a057.tar.gz
glibc-788e8e7c221825916e6ab11f0079d4c5ede8a057.tar.xz
glibc-788e8e7c221825916e6ab11f0079d4c5ede8a057.zip
Update.
1999-07-25  Ulrich Drepper  <drepper@cygnus.com>

	* iconvdata/euc-kr.c (euckr_from_ucs4): Set cp[0] to '\0' in case
	of an error.  Patch by Changwoo Ryu <cwryu@debian.org>.
Diffstat (limited to 'iconvdata/euc-kr.c')
-rw-r--r--iconvdata/euc-kr.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/iconvdata/euc-kr.c b/iconvdata/euc-kr.c
index 4f511705a4..f74d7748f9 100644
--- a/iconvdata/euc-kr.c
+++ b/iconvdata/euc-kr.c
@@ -33,6 +33,8 @@ euckr_from_ucs4 (uint32_t ch, unsigned char *cp)
 	  cp[0] |= 0x80;
 	  cp[1] |= 0x80;
 	}
+      else
+	cp[0] = '\0';
     }
   /* XXX Think about 0x5c ; '\'.  */
   else