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
cb0b2843
Commit
cb0b2843
authored
Feb 01, 2012
by
Janne Grunau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zmbv: check av_realloc() return values and avoid memleaks on ENOMEM
parent
d4eeadcb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
zmbv.c
libavcodec/zmbv.c
+9
-2
No files found.
libavcodec/zmbv.c
View file @
cb0b2843
...
...
@@ -404,6 +404,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
int
zret
=
Z_OK
;
// Zlib return code
int
len
=
buf_size
;
int
hi_ver
,
lo_ver
;
uint8_t
*
tmp
;
if
(
c
->
pic
.
data
[
0
])
avctx
->
release_buffer
(
avctx
,
&
c
->
pic
);
...
...
@@ -485,8 +486,14 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
return
-
1
;
}
c
->
cur
=
av_realloc
(
c
->
cur
,
avctx
->
width
*
avctx
->
height
*
(
c
->
bpp
/
8
));
c
->
prev
=
av_realloc
(
c
->
prev
,
avctx
->
width
*
avctx
->
height
*
(
c
->
bpp
/
8
));
tmp
=
av_realloc
(
c
->
cur
,
avctx
->
width
*
avctx
->
height
*
(
c
->
bpp
/
8
));
if
(
!
tmp
)
return
AVERROR
(
ENOMEM
);
c
->
cur
=
tmp
;
tmp
=
av_realloc
(
c
->
prev
,
avctx
->
width
*
avctx
->
height
*
(
c
->
bpp
/
8
));
if
(
!
tmp
)
return
AVERROR
(
ENOMEM
);
c
->
prev
=
tmp
;
c
->
bx
=
(
c
->
width
+
c
->
bw
-
1
)
/
c
->
bw
;
c
->
by
=
(
c
->
height
+
c
->
bh
-
1
)
/
c
->
bh
;
}
...
...
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