From 5a50fa7147be049212274534ccfbf7ed14708070 Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Tue, 13 Apr 2004 17:08:31 +0000 Subject: block signals when writing db to ensure db isn't corrupted git-svn-id: https://svn.musicpd.org/mpd/trunk@730 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/song.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/song.c') diff --git a/src/song.c b/src/song.c index d9b28284c..1c3d53ad2 100644 --- a/src/song.c +++ b/src/song.c @@ -132,6 +132,7 @@ void freeSongList(SongList * list) { freeList(list); } +/* DON'T BLOCK SIGNALS IN THIS FUNCTION, called by writeDirectoryDB() */ int printSongInfo(FILE * fp, Song * song) { myfprintf(fp,"%s%s\n",SONG_FILE,song->utf8file); @@ -151,6 +152,7 @@ int printSongInfoFromList(FILE * fp, SongList * list) { return 0; } +/* DON'T BLOCK SIGNALS IN THIS FUNCTION, called by writeDirectoryDB() */ void writeSongInfoFromList(FILE * fp, SongList * list) { ListNode * tempNode = list->firstNode; -- cgit v1.2.3