From 4b39528cda82d099a2d47d0abc9b0879c317178d Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 11 Jan 2000 10:20:25 +0000 Subject: [PATCH] (code_convert_region): Initialize total_skip. --- src/coding.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coding.c b/src/coding.c index 5077fa9ca07..26a234c6522 100644 --- a/src/coding.c +++ b/src/coding.c @@ -4509,7 +4509,7 @@ code_convert_region (from, from_byte, to, to_byte, coding, encodep, replace) { int len = to - from, len_byte = to_byte - from_byte; int require, inserted, inserted_byte; - int head_skip, tail_skip, total_skip; + int head_skip, tail_skip, total_skip = 0; Lisp_Object saved_coding_symbol; int multibyte = !NILP (current_buffer->enable_multibyte_characters); int first = 1; -- 2.39.5