1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-06-02 06:01:10 +00:00

Remove superfluous NULL assignment

This commit is contained in:
Moritz Grimm 2020-01-27 23:51:25 +01:00
parent a86201290d
commit b0ef65fc03

View File

@ -366,7 +366,7 @@ mdata_run_program(struct mdata *md, const char *program)
return (-1);
}
artist = album = title = songinfo = NULL;
album = title = songinfo = NULL;
if (NULL == (artist = _mdata_run(program, MDATA_ARTIST)) ||
NULL == (album = _mdata_run(program, MDATA_ALBUM)) ||
NULL == (title = _mdata_run(program, MDATA_TITLE)) ||