Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
0ccf051a
Commit
0ccf051a
authored
Aug 23, 2012
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: fix memleak in avcodec_encode_audio2()
Ensure that padded_frame is freed before returning when needed.
parent
c54e0061
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
utils.c
libavcodec/utils.c
+6
-3
No files found.
libavcodec/utils.c
View file @
0ccf051a
...
...
@@ -981,8 +981,10 @@ int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx,
avctx
->
internal
->
last_audio_frame
=
1
;
}
if
(
frame
->
nb_samples
!=
avctx
->
frame_size
)
return
AVERROR
(
EINVAL
);
if
(
frame
->
nb_samples
!=
avctx
->
frame_size
)
{
ret
=
AVERROR
(
EINVAL
);
goto
end
;
}
}
}
...
...
@@ -1013,7 +1015,7 @@ int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx,
if
(
ret
<
0
||
!*
got_packet_ptr
)
{
av_free_packet
(
avpkt
);
av_init_packet
(
avpkt
);
return
ret
;
goto
end
;
}
/* NOTE: if we add any audio encoders which output non-keyframe packets,
...
...
@@ -1021,6 +1023,7 @@ int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx,
* here to simplify things */
avpkt
->
flags
|=
AV_PKT_FLAG_KEY
;
end:
if
(
padded_frame
)
{
av_freep
(
&
padded_frame
->
data
[
0
]);
if
(
padded_frame
->
extended_data
!=
padded_frame
->
data
)
...
...
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