fix strtok() related segmentation fault
strtok() may return NULL if the input is an empty string. The playlist parser did not check for that. git-svn-id: https://svn.musicpd.org/mpd/trunk@7200 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
parent
c5b524e376
commit
c9e6201df5
|
@ -272,7 +272,10 @@ static void loadPlaylistFromStateFile(FILE *fp, char *buffer,
|
|||
if (!myFgets(buffer, PLAYLIST_BUFFER_SIZE, fp))
|
||||
state_file_fatal();
|
||||
while (strcmp(buffer, PLAYLIST_STATE_FILE_PLAYLIST_END)) {
|
||||
song = atoi(strtok(buffer, ":"));
|
||||
temp = strtok(buffer, ":");
|
||||
if (temp == NULL)
|
||||
state_file_fatal();
|
||||
song = atoi(temp);
|
||||
if (!(temp = strtok(NULL, "")))
|
||||
state_file_fatal();
|
||||
if (!addToPlaylist(STDERR_FILENO, temp, NULL)
|
||||
|
|
Loading…
Reference in New Issue