From: Chris-Savinovich Date: Thu, 4 Apr 2019 21:02:42 +0000 (-0500) Subject: config.c: Fix a crash in extconfig parsing X-Git-Tag: 16.4.0-rc1~38^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85bbb7a3e852593fcb00be91c1c01f0cccb150ac;p=thirdparty%2Fasterisk.git config.c: Fix a crash in extconfig parsing When extconfig.conf file is parsed, the code previously searched for character comma without verifying if error (null or blank). This caused a segmentation error. Change-Id: Id76b452d8f330d11c2742c37232761ad71472a8b --- diff --git a/main/config.c b/main/config.c index f694c2bd8c..5660fbe963 100644 --- a/main/config.c +++ b/main/config.c @@ -2904,7 +2904,10 @@ static int reload_module(void) ast_copy_string(buf, v->value, sizeof(buf)); stringp = buf; driver = strsep(&stringp, ","); - + if (!stringp) { + ast_log(LOG_WARNING, "extconfig.conf: value '%s' ignored due to wrong format\n", v->value); + continue; + } if ((tmp = strchr(stringp, '\"'))) stringp = tmp;