audio: removed config_param.value NULL check

The value is always non-NULL.
This commit is contained in:
Max Kellermann 2009-10-21 22:22:20 +02:00
parent 83844ec239
commit 8cb6854da4

View File

@ -46,7 +46,7 @@ void initAudioConfig(void)
GError *error = NULL;
bool ret;
if (NULL == param || NULL == param->value)
if (param == NULL)
return;
ret = audio_format_parse(&configured_audio_format, param->value,