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
Toggle navigation
Open sidebar
BC
public
external
ffmpeg
Commits
81688e68
Commit
81688e68
authored
Feb 04, 2015
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avconv: Check rc_override memory allocation
CC: libav-stable@libav.org Bug-Id: CID 1265719
parent
9d3b752f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
avconv_opt.c
avconv_opt.c
+4
-0
No files found.
avconv_opt.c
View file @
81688e68
...
...
@@ -1136,6 +1136,10 @@ static OutputStream *new_video_stream(OptionsContext *o, AVFormatContext *oc)
video_enc
->
rc_override
=
av_realloc
(
video_enc
->
rc_override
,
sizeof
(
RcOverride
)
*
(
i
+
1
));
if
(
!
video_enc
->
rc_override
)
{
av_log
(
NULL
,
AV_LOG_FATAL
,
"Could not (re)allocate memory for rc_override.
\n
"
);
exit_program
(
1
);
}
video_enc
->
rc_override
[
i
].
start_frame
=
start
;
video_enc
->
rc_override
[
i
].
end_frame
=
end
;
if
(
q
>
0
)
{
...
...
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