mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-28 19:42:02 +00:00
(decode_coding_iso2022): Initialized local variable c2.
(decode_coding_sjis_big5): Likewise.
This commit is contained in:
parent
cb72110db2
commit
85478bc688
@ -1,3 +1,8 @@
|
||||
2003-08-28 David Abrahams <dave@boost-consulting.com> (tiny change)
|
||||
|
||||
* coding.c (decode_coding_iso2022): Initialized local variable c2.
|
||||
(decode_coding_sjis_big5): Likewise.
|
||||
|
||||
2003-08-27 Jason Rumney <jasonr@gnu.org>
|
||||
|
||||
* w32.c (sys_pipe): Protect against file descriptor overflow.
|
||||
|
@ -1823,7 +1823,7 @@ decode_coding_iso2022 (coding, source, destination, src_bytes, dst_bytes)
|
||||
|
||||
while (1)
|
||||
{
|
||||
int c1, c2;
|
||||
int c1, c2 = 0;
|
||||
|
||||
src_base = src;
|
||||
ONE_MORE_BYTE (c1);
|
||||
@ -3050,7 +3050,7 @@ decode_coding_sjis_big5 (coding, source, destination,
|
||||
coding->produced_char = 0;
|
||||
while (1)
|
||||
{
|
||||
int c, charset, c1, c2;
|
||||
int c, charset, c1, c2 = 0;
|
||||
|
||||
src_base = src;
|
||||
ONE_MORE_BYTE (c1);
|
||||
|
Loading…
Reference in New Issue
Block a user