Commit a8fbff24 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

include/vlc_meta.h: Start with a zero sized dictionary for extra meta.

parent 1855d4a8
......@@ -131,7 +131,7 @@ static inline vlc_meta_t *vlc_meta_New( void )
m->psz_trackid = NULL;
m->i_status = 0;
vlc_dictionary_init( &m->extra_tags, 32 /* "ought to be enough for anybody" */ );
vlc_dictionary_init( &m->extra_tags, 0 );
return m;
}
......
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