summaryrefslogtreecommitdiff
path: root/apps/playlist.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2003-07-08 06:31:23 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2003-07-08 06:31:23 +0000
commitf937912b5c2a3d6030b78eacfe15d57d9b3483ae (patch)
treed200b6fc0a286633e058fd5c25f0387033e53fea /apps/playlist.c
parent14078864a02665179fcd673aa1fdd50fafa9c563 (diff)
downloadrockbox-f937912b5c2a3d6030b78eacfe15d57d9b3483ae.tar.gz
rockbox-f937912b5c2a3d6030b78eacfe15d57d9b3483ae.zip
The creation of the playlist control file failed when control_fd == 0
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3814 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/playlist.c')
-rw-r--r--apps/playlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/playlist.c b/apps/playlist.c
index 35f91e4b81..be831c43c6 100644
--- a/apps/playlist.c
+++ b/apps/playlist.c
@@ -978,7 +978,7 @@ int playlist_create(char *dir, char *file)
978 978
979 update_playlist_filename(dir, file); 979 update_playlist_filename(dir, file);
980 980
981 if (playlist.control_fd > 0) 981 if (playlist.control_fd >= 0)
982 { 982 {
983 if (fprintf(playlist.control_fd, "P:%d:%s:%s\n", 983 if (fprintf(playlist.control_fd, "P:%d:%s:%s\n",
984 PLAYLIST_CONTROL_FILE_VERSION, dir, file) > 0) 984 PLAYLIST_CONTROL_FILE_VERSION, dir, file) > 0)