(code_convert_region): Update `dst' correctly.

This commit is contained in:
Kenichi Handa 1999-10-29 00:46:20 +00:00
parent d699a7ad51
commit 3636f7a323
2 changed files with 5 additions and 1 deletions

View file

@ -4496,7 +4496,7 @@ code_convert_region (from, from_byte, to, to_byte, coding, encodep, replace)
inserted_byte += coding->produced;
len_byte -= coding->consumed;
src += coding->consumed;
dst += inserted_byte;
dst += coding->produced;
if (result == CODING_FINISH_NORMAL)
{