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
2cda1a16
Commit
2cda1a16
authored
Mar 15, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/dvbsub: Fix hypothetical pointer overflow in dvbsub_probe()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
32c4b504
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
dvbsub.c
libavformat/dvbsub.c
+3
-1
No files found.
libavformat/dvbsub.c
View file @
2cda1a16
...
...
@@ -37,7 +37,7 @@ static int dvbsub_probe(AVProbeData *p)
const
uint8_t
*
ptr
=
p
->
buf
+
i
;
uint8_t
histogram
[
6
]
=
{
0
};
int
min
=
255
;
for
(
j
=
0
;
ptr
+
6
<
end
;
j
++
)
{
for
(
j
=
0
;
6
<
end
-
ptr
;
j
++
)
{
if
(
*
ptr
!=
0x0f
)
break
;
type
=
ptr
[
1
];
...
...
@@ -49,6 +49,8 @@ static int dvbsub_probe(AVProbeData *p)
histogram
[
type
-
0x10
]
++
;
}
else
break
;
if
(
6
+
len
>
end
-
ptr
)
break
;
ptr
+=
6
+
len
;
}
for
(
k
=
0
;
k
<
4
;
k
++
)
{
...
...
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