mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Playlist Fix failure to append default file name
FS#12992 - Can't create playlist with all tracks on device (regression) references this issue empty_playlist() only sets filename[0] = '\0' the code was checking filename[1].. bug ensued strip extra leading '/' from default path Change-Id: Ibd8973666ee45583b9e11e3ba317c0e247f085c1
This commit is contained in:
parent
0ff6a31d7d
commit
fd19a2caa2
2 changed files with 5 additions and 1 deletions
|
@ -86,6 +86,10 @@ static int initialize_catalog(void)
|
|||
mkdir(playlist_dir);
|
||||
}
|
||||
|
||||
/* remove duplicate leading '/' */
|
||||
if (playlist_dir[0] == '/' && playlist_dir[1] == '/')
|
||||
strcpy(playlist_dir, &playlist_dir[1]);
|
||||
|
||||
playlist_dir_length = strlen(playlist_dir);
|
||||
|
||||
if (dir_exists(playlist_dir))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue