Commit dd205d09 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

MKV: fix meta regression

(cherry picked from commit 57d06767)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 942bd31c
...@@ -371,7 +371,8 @@ void matroska_segment_c::LoadTags( KaxTags *tags ) ...@@ -371,7 +371,8 @@ void matroska_segment_c::LoadTags( KaxTags *tags )
*****************************************************************************/ *****************************************************************************/
void matroska_segment_c::InformationCreate( ) void matroska_segment_c::InformationCreate( )
{ {
sys.meta = vlc_meta_New(); if( !sys.meta )
sys.meta = vlc_meta_New();
if( psz_title ) if( psz_title )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment