aboutsummaryrefslogtreecommitdiffstats
path: root/src/ccl.c
diff options
context:
space:
mode:
authorKenichi Handa2010-02-17 15:47:32 +0900
committerKenichi Handa2010-02-17 15:47:32 +0900
commitd0396581d5db3d6fd0b27db3511a281cf50b6bd2 (patch)
tree432363f3f70fb139ddd97622d230827ca2d43000 /src/ccl.c
parentf1e0d763624b7aaecde07611cbe33d189901665b (diff)
downloademacs-d0396581d5db3d6fd0b27db3511a281cf50b6bd2.tar.gz
emacs-d0396581d5db3d6fd0b27db3511a281cf50b6bd2.zip
Fix the ccl decoder for the case that the output buffer is fullfilled.
Diffstat (limited to 'src/ccl.c')
-rw-r--r--src/ccl.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/ccl.c b/src/ccl.c
index bc3cfe09b77..c5523c2d44f 100644
--- a/src/ccl.c
+++ b/src/ccl.c
@@ -883,9 +883,6 @@ ccl_driver (ccl, source, destination, src_size, dst_size, charset_list)
883 int eof_ic = ccl->eof_ic; 883 int eof_ic = ccl->eof_ic;
884 int eof_hit = 0; 884 int eof_hit = 0;
885 885
886 if (ic >= eof_ic)
887 ic = CCL_HEADER_MAIN;
888
889 if (ccl->buf_magnification == 0) /* We can't read/produce any bytes. */ 886 if (ccl->buf_magnification == 0) /* We can't read/produce any bytes. */
890 dst = NULL; 887 dst = NULL;
891 888