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
9e477a37
Commit
9e477a37
authored
Aug 23, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jpeg2000: fix null pointer dereference in case of malloc failure
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
09927f3e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
9 deletions
+11
-9
jpeg2000.c
libavcodec/jpeg2000.c
+11
-9
No files found.
libavcodec/jpeg2000.c
View file @
9e477a37
...
...
@@ -507,17 +507,19 @@ void ff_jpeg2000_cleanup(Jpeg2000Component *comp, Jpeg2000CodingStyle *codsty)
Jpeg2000ResLevel
*
reslevel
=
comp
->
reslevel
+
reslevelno
;
for
(
bandno
=
0
;
bandno
<
reslevel
->
nbands
;
bandno
++
)
{
Jpeg2000Band
*
band
=
reslevel
->
band
+
bandno
;
for
(
precno
=
0
;
precno
<
reslevel
->
num_precincts_x
*
reslevel
->
num_precincts_y
;
precno
++
)
{
if
(
band
->
prec
)
{
Jpeg2000Prec
*
prec
=
band
->
prec
+
precno
;
av_freep
(
&
prec
->
zerobits
);
av_freep
(
&
prec
->
cblkincl
);
av_freep
(
&
prec
->
cblk
);
if
(
reslevel
->
band
)
{
Jpeg2000Band
*
band
=
reslevel
->
band
+
bandno
;
for
(
precno
=
0
;
precno
<
reslevel
->
num_precincts_x
*
reslevel
->
num_precincts_y
;
precno
++
)
{
if
(
band
->
prec
)
{
Jpeg2000Prec
*
prec
=
band
->
prec
+
precno
;
av_freep
(
&
prec
->
zerobits
);
av_freep
(
&
prec
->
cblkincl
);
av_freep
(
&
prec
->
cblk
);
}
}
}
av_freep
(
&
band
->
prec
);
av_freep
(
&
band
->
prec
);
}
}
av_freep
(
&
reslevel
->
band
);
}
...
...
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