]> git.eshelyaron.com Git - emacs.git/commitdiff
(code_convert_region): Initialize total_skip.
authorAndreas Schwab <schwab@suse.de>
Tue, 11 Jan 2000 10:20:25 +0000 (10:20 +0000)
committerAndreas Schwab <schwab@suse.de>
Tue, 11 Jan 2000 10:20:25 +0000 (10:20 +0000)
src/coding.c

index 5077fa9ca07464920a65307c20e592b0c448e01d..26a234c65223be01c5e7267a722020bd24f6eba2 100644 (file)
@@ -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;