Commit 58c201ce authored by Max Kellermann's avatar Max Kellermann

output_all: removed "audio_outputs!=NULL" check

After initialization, audio_outputs is always non-NULL. Don't check that.
parent dfea6b7c
...@@ -227,9 +227,6 @@ audio_output_all_open(const struct audio_format *audio_format) ...@@ -227,9 +227,6 @@ audio_output_all_open(const struct audio_format *audio_format)
bool ret = false; bool ret = false;
unsigned int i; unsigned int i;
if (!audio_outputs)
return false;
if (audio_format != NULL) if (audio_format != NULL)
input_audio_format = *audio_format; input_audio_format = *audio_format;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment