Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
85478bc6
Commit
85478bc6
authored
Aug 28, 2003
by
Kenichi Handa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(decode_coding_iso2022): Initialized local variable c2.
(decode_coding_sjis_big5): Likewise.
parent
cb72110d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
src/ChangeLog
src/ChangeLog
+5
-0
src/coding.c
src/coding.c
+2
-2
No files found.
src/ChangeLog
View file @
85478bc6
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.
...
...
src/coding.c
View file @
85478bc6
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment