Commit 653b010a authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Taglib: allow deletion of track and date

Close #5686
parent 859847f1
......@@ -874,11 +874,11 @@ static int WriteMeta( vlc_object_t *p_this )
#undef SET
psz_meta = input_item_GetDate( p_item );
if( !EMPTY_STR(psz_meta) ) p_tag->setYear( atoi( psz_meta ) );
p_tag->setYear( atoi( psz_meta ) );
free( psz_meta );
psz_meta = input_item_GetTrackNum( p_item );
if( !EMPTY_STR(psz_meta) ) p_tag->setTrack( atoi( psz_meta ) );
p_tag->setTrack( atoi( psz_meta ) );
free( psz_meta );
......
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