mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 04:11:44 +00:00
New freeing code in libmatroska now takes care of all children of a EbmlMaster itself - no need to free those manually anymore.
This commit is contained in:
parent
725a176af1
commit
af255a552e
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
/*!
|
/*!
|
||||||
\file
|
\file
|
||||||
\version \$Id: mkvmerge.cpp,v 1.15 2003/02/25 14:24:43 mosu Exp $
|
\version \$Id: mkvmerge.cpp,v 1.16 2003/02/26 08:59:54 mosu Exp $
|
||||||
\brief command line parameter parsing, looping, output handling
|
\brief command line parameter parsing, looping, output handling
|
||||||
\author Moritz Bunkus <moritz @ bunkus.org>
|
\author Moritz Bunkus <moritz @ bunkus.org>
|
||||||
*/
|
*/
|
||||||
@ -753,9 +753,7 @@ static void clear_packetq() {
|
|||||||
p = packet_queue[i];
|
p = packet_queue[i];
|
||||||
if (p != NULL) {
|
if (p != NULL) {
|
||||||
free(p->data);
|
free(p->data);
|
||||||
delete p->data_buffer;
|
delete p->data_buffer;
|
||||||
delete p->group;
|
|
||||||
delete p->block;
|
|
||||||
free(p);
|
free(p);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user