Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guillaume Martres
aom-rav1e
Commits
75eb3afd
Commit
75eb3afd
authored
Aug 19, 2014
by
Jim Bankoski
Committed by
Gerrit Code Review
Aug 21, 2014
Browse files
y4minput.c : uninitalized buffer caused garbage value warning
Change-Id: I613f521680b235726b2e0f78c068c0e5d7799f76
parent
26d973d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
y4minput.c
View file @
75eb3afd
...
...
@@ -700,7 +700,7 @@ static void y4m_convert_null(y4m_input *_y4m, unsigned char *_dst,
int
y4m_input_open
(
y4m_input
*
_y4m
,
FILE
*
_fin
,
char
*
_skip
,
int
_nskip
,
int
only_420
)
{
char
buffer
[
80
];
char
buffer
[
80
]
=
{
0
}
;
int
ret
;
int
i
;
/*Read until newline, or 80 cols, whichever happens first.*/
...
...
Write
Preview
Supports
Markdown
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