Commit 4e4b362e authored by Rafaël Carré's avatar Rafaël Carré

Do not try to read metadata if it's not present

parent 79462a4b
...@@ -190,7 +190,9 @@ void MetaPanel::saveMeta() ...@@ -190,7 +190,9 @@ void MetaPanel::saveMeta()
**/ **/
void MetaPanel::update( input_item_t *p_item ) void MetaPanel::update( input_item_t *p_item )
{ {
char *psz_meta; if( !p_item->p_meta )
return;
char *psz_meta;
#define UPDATE_META( meta, widget ) { \ #define UPDATE_META( meta, widget ) { \
psz_meta = p_item->p_meta->psz_##meta; \ psz_meta = p_item->p_meta->psz_##meta; \
if( !EMPTY_STR( psz_meta ) ) \ if( !EMPTY_STR( psz_meta ) ) \
...@@ -284,6 +286,8 @@ ExtraMetaPanel::ExtraMetaPanel( QWidget *parent, ...@@ -284,6 +286,8 @@ ExtraMetaPanel::ExtraMetaPanel( QWidget *parent,
void ExtraMetaPanel::update( input_item_t *p_item ) void ExtraMetaPanel::update( input_item_t *p_item )
{ {
vlc_meta_t *p_meta = p_item->p_meta; vlc_meta_t *p_meta = p_item->p_meta;
if( !p_meta )
return;
QStringList tempItem; QStringList tempItem;
QList<QTreeWidgetItem *> items; QList<QTreeWidgetItem *> items;
......
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