Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
6c733713
Commit
6c733713
authored
Dec 09, 2004
by
gbazin
Browse files
* modules/packetizer/mpeg4video.c: fixed memory leak (patch by Sau).
parent
dd4d1605
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/packetizer/mpeg4video.c
View file @
6c733713
...
...
@@ -232,7 +232,8 @@ static block_t *Packetize( decoder_t *p_dec, block_t **pp_block )
{
/* Copy the complete VOL */
p_dec
->
fmt_out
.
i_extra
=
p_start
-
p_vol
;
p_dec
->
fmt_out
.
p_extra
=
malloc
(
p_dec
->
fmt_out
.
i_extra
);
p_dec
->
fmt_out
.
p_extra
=
realloc
(
p_dec
->
fmt_out
.
p_extra
,
p_dec
->
fmt_out
.
i_extra
);
memcpy
(
p_dec
->
fmt_out
.
p_extra
,
p_vol
,
p_dec
->
fmt_out
.
i_extra
);
m4v_VOLParse
(
&
p_dec
->
fmt_out
,
p_dec
->
fmt_out
.
p_extra
,
p_dec
->
fmt_out
.
i_extra
);
...
...
@@ -497,6 +498,3 @@ static int m4v_VOLParse( es_format_t *fmt, uint8_t *p_vol, int i_vol )
}
return
VLC_SUCCESS
;
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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