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
Xiph.Org
aom-rav1e
Commits
bcdac7b4
Commit
bcdac7b4
authored
Feb 25, 2015
by
Yaowu Xu
Committed by
Gerrit Code Review
Feb 25, 2015
Browse files
Merge "Fix a trivial memory leak"
parents
419ff135
b5d0a201
Changes
1
Hide whitespace changes
Inline
Side-by-side
vpxdec.c
View file @
bcdac7b4
...
...
@@ -718,9 +718,10 @@ int main_loop(int argc, const char **argv_) {
/* Handle non-option arguments */
fn
=
argv
[
0
];
if
(
!
fn
)
if
(
!
fn
)
{
free
(
argv
);
usage_exit
();
}
/* Open file */
infile
=
strcmp
(
fn
,
"-"
)
?
fopen
(
fn
,
"rb"
)
:
set_binary_mode
(
stdin
);
...
...
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