Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
790032d1
Commit
790032d1
authored
Oct 15, 2005
by
Steve Lhomme
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mkv.cpp: fix a potential problem when the same dir contains files with no Segment UID
parent
f60b4c79
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/demux/mkv.cpp
modules/demux/mkv.cpp
+1
-1
No files found.
modules/demux/mkv.cpp
View file @
790032d1
...
...
@@ -5223,7 +5223,7 @@ size_t virtual_segment_c::AddSegment( matroska_segment_c *p_segment )
// check if it's not already in here
for
(
i
=
0
;
i
<
linked_segments
.
size
();
i
++
)
{
if
(
*
p_segment
->
p_segment_uid
==
*
linked_segments
[
i
]
->
p_segment_uid
)
if
(
linked_segments
[
i
]
->
p_segment_uid
!=
NULL
&&
*
p_segment
->
p_segment_uid
==
*
linked_segments
[
i
]
->
p_segment_uid
)
return
0
;
}
...
...
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