summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mpvcore/m_config.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/mpvcore/m_config.c b/mpvcore/m_config.c
index 96c93f7c28..4ea5b54d17 100644
--- a/mpvcore/m_config.c
+++ b/mpvcore/m_config.c
@@ -606,15 +606,10 @@ int m_config_set_option(struct m_config *config, struct bstr name,
const struct m_option *m_config_get_option(const struct m_config *config,
struct bstr name)
{
- struct m_config_option *co;
-
assert(config != NULL);
- co = m_config_get_co(config, name);
- if (co)
- return co->opt;
- else
- return NULL;
+ struct m_config_option *co = m_config_get_co(config, name);
+ return co ? co->opt : NULL;
}
int m_config_option_requires_param(struct m_config *config, bstr name)