mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2025-02-02 15:07:45 -05:00
Remove superfluous NULL assignment
This commit is contained in:
parent
a86201290d
commit
b0ef65fc03
@ -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)) ||
|
||||
|
Loading…
x
Reference in New Issue
Block a user