From f937912b5c2a3d6030b78eacfe15d57d9b3483ae Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Tue, 8 Jul 2003 06:31:23 +0000 Subject: 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 --- apps/playlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') 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) update_playlist_filename(dir, file); - if (playlist.control_fd > 0) + if (playlist.control_fd >= 0) { if (fprintf(playlist.control_fd, "P:%d:%s:%s\n", PLAYLIST_CONTROL_FILE_VERSION, dir, file) > 0) -- cgit v1.2.3