Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
458
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
af3bbd8f
Commit
af3bbd8f
authored
11 years ago
by
Denis Charmet
Browse files
Options
Downloads
Patches
Plain Diff
Avoid infinite recursion loop when parsing tags
Fix #10028
parent
17214ee7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/demux/mkv/matroska_segment.cpp
+4
-2
4 additions, 2 deletions
modules/demux/mkv/matroska_segment.cpp
with
4 additions
and
2 deletions
modules/demux/mkv/matroska_segment.cpp
+
4
−
2
View file @
af3bbd8f
...
...
@@ -268,6 +268,8 @@ SimpleTag * matroska_segment_c::ParseSimpleTags( KaxTagSimple *tag, int target_t
EbmlElement
*
el
;
EbmlParser
*
ep
=
new
EbmlParser
(
&
es
,
tag
,
&
sys
.
demuxer
);
SimpleTag
*
p_simple
=
new
SimpleTag
;
size_t
max_size
=
tag
->
GetSize
();
size_t
size
=
0
;
if
(
!
p_simple
)
{
...
...
@@ -281,7 +283,7 @@ SimpleTag * matroska_segment_c::ParseSimpleTags( KaxTagSimple *tag, int target_t
msg_Dbg
(
&
sys
.
demuxer
,
"| + Simple Tag "
);
try
{
while
(
(
el
=
ep
->
Get
()
)
!=
NULL
)
while
(
(
el
=
ep
->
Get
()
)
!=
NULL
&&
size
<
max_size
)
{
if
(
unlikely
(
el
->
GetSize
()
>=
SIZE_MAX
)
)
{
...
...
@@ -322,6 +324,7 @@ SimpleTag * matroska_segment_c::ParseSimpleTags( KaxTagSimple *tag, int target_t
p_simple
->
sub_tags
.
push_back
(
p_st
);
}
/*TODO Handle binary tags*/
size
+=
el
->
HeadSize
()
+
el
->
GetSize
();
}
}
catch
(...)
...
...
@@ -339,7 +342,6 @@ SimpleTag * matroska_segment_c::ParseSimpleTags( KaxTagSimple *tag, int target_t
delete
p_simple
;
return
NULL
;
}
for
(
int
i
=
0
;
metadata_map
[
i
].
key
;
i
++
)
{
if
(
!
strcmp
(
p_simple
->
psz_tag_name
,
metadata_map
[
i
].
key
)
&&
...
...
This diff is collapsed.
Click to expand it.
Migration Bot
@MigrationBot
mentioned in issue
#10028 (closed)
·
4 years ago
mentioned in issue
#10028 (closed)
mentioned in issue #10028
Toggle commit list
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment