Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
a7c63dfe
Commit
a7c63dfe
authored
Jun 22, 2003
by
Laurent Aimar
Browse files
* mkv: fix a double delete.
parent
b2dd679b
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/mkv.cpp
View file @
a7c63dfe
...
...
@@ -2,7 +2,7 @@
* mkv.cpp : matroska demuxer
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: mkv.cpp,v 1.
3
2003/06/22 1
4:36:34
fenrir Exp $
* $Id: mkv.cpp,v 1.
4
2003/06/22 1
6:27:11
fenrir Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -1575,14 +1575,11 @@ static void BlockDecode( input_thread_t *p_input, KaxBlock *block, mtime_t i_pts
if
(
i_track
>=
p_sys
->
i_track
)
{
msg_Err
(
p_input
,
"invalid track number=%d"
,
block
->
TrackNum
()
);
delete
block
;
return
;
}
if
(
tk
.
p_es
->
p_decoder_fifo
==
NULL
)
{
delete
block
;
return
;
}
...
...
Write
Preview
Supports
Markdown
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