Commit 1bcf73a8 authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: CoverArtLabel: missing refcount

parent 0f82e115
...@@ -654,7 +654,10 @@ CoverArtLabel::CoverArtLabel( QWidget *parent, intf_thread_t *_p_i ) ...@@ -654,7 +654,10 @@ CoverArtLabel::CoverArtLabel( QWidget *parent, intf_thread_t *_p_i )
p_item = THEMIM->currentInputItem(); p_item = THEMIM->currentInputItem();
if( p_item ) if( p_item )
{
vlc_gc_incref( p_item );
showArtUpdate( p_item ); showArtUpdate( p_item );
}
else else
showArtUpdate( "" ); showArtUpdate( "" );
} }
......
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