mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
qtmux: Free EDTS instead of just clearing it and setting it to NULL
This commit is contained in:
parent
0e62a0603d
commit
98583dc944
1 changed files with 1 additions and 1 deletions
|
@ -3731,7 +3731,7 @@ void
|
||||||
atom_trak_edts_clear (AtomTRAK * trak)
|
atom_trak_edts_clear (AtomTRAK * trak)
|
||||||
{
|
{
|
||||||
if (trak->edts) {
|
if (trak->edts) {
|
||||||
atom_edts_clear (trak->edts);
|
atom_edts_free (trak->edts);
|
||||||
trak->edts = NULL;
|
trak->edts = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue