1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-21 21:20:44 -08:00

(decode_coding): Fix the condition of terminating the

decoding loop.
This commit is contained in:
Kenichi Handa 2006-02-28 11:05:39 +00:00
parent 7f3e252c61
commit 0ca493eec6

View file

@ -6185,7 +6185,7 @@ decode_coding (coding)
= coding->charbuf[coding->charbuf_used - carryover + i];
}
while (coding->consumed < coding->src_bytes
&& ! coding->result);
&& coding->result != CODING_RESULT_INSUFFICIENT_MEM);
if (carryover > 0)
{