about summary refs log tree commit diff
path: root/iconv
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-03-23 21:34:58 +0000
committerUlrich Drepper <drepper@redhat.com>2000-03-23 21:34:58 +0000
commitc0bc5f7b8fd62dfa566dd3adb91f3a1ee8db6aeb (patch)
tree6dd7566ba2bd4bc27c327d0348e0309b252ed07c /iconv
parent7392ce9bb41a985cf0cba52cf6b021835ae28563 (diff)
downloadglibc-c0bc5f7b8fd62dfa566dd3adb91f3a1ee8db6aeb.tar.gz
glibc-c0bc5f7b8fd62dfa566dd3adb91f3a1ee8db6aeb.tar.xz
glibc-c0bc5f7b8fd62dfa566dd3adb91f3a1ee8db6aeb.zip
Update.
2000-03-23  Bruno Haible  <haible@clisp.cons.org>

	* iconv/gconv_simple.c (internal_ucs4_loop, internal_ucs4le_loop):
	Remove no-op pointer increment.
Diffstat (limited to 'iconv')
-rw-r--r--iconv/gconv_simple.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/iconv/gconv_simple.c b/iconv/gconv_simple.c
index 89c0384b8d..96a1efc96b 100644
--- a/iconv/gconv_simple.c
+++ b/iconv/gconv_simple.c
@@ -96,9 +96,6 @@ internal_ucs4_loop (const unsigned char **inptrp, const unsigned char *inend,
   else
     result = __GCONV_INCOMPLETE_INPUT;
 
-  if (converted != NULL)
-    converted += n_convert;
-
   return result;
 }
 
@@ -151,9 +148,6 @@ internal_ucs4le_loop (const unsigned char **inptrp, const unsigned char *inend,
   else
     result = __GCONV_INCOMPLETE_INPUT;
 
-  if (converted != NULL)
-    converted += n_convert;
-
   return result;
 }