diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/itdb_itunesdb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/itdb_itunesdb.c b/src/itdb_itunesdb.c index d616829..c715fae 100644 --- a/src/itdb_itunesdb.c +++ b/src/itdb_itunesdb.c @@ -2103,13 +2103,13 @@ static glong get_playlist (FImport *fimp, glong mhyp_seek) { /* we did not read a valid mhod TITLE header -> */ /* we simply make up our own name */ if (itdb_playlist_is_mpl (plitem)) - plitem->name = _("Master-PL"); + plitem->name = g_strdup (_("Master-PL")); else { if (itdb_playlist_is_podcasts (plitem)) - plitem->name = _("Podcasts"); + plitem->name = g_strdup (_("Podcasts")); else - plitem->name = _("Playlist"); + plitem->name = g_strdup (_("Playlist")); } } |