]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix Segfault In features-config.c When Application Has No Arguments
authorMichael L. Young <elgueromexicano@gmail.com>
Wed, 18 Sep 2013 00:12:21 +0000 (00:12 +0000)
committerMichael L. Young <elgueromexicano@gmail.com>
Wed, 18 Sep 2013 00:12:21 +0000 (00:12 +0000)
Some applications do not require arguments.  Therefore, when parsing application
maps in features.conf, it is possible that app_data will be set to NULL.

* This patch sets app_data to "" if it is NULL.

Review: https://reviewboard.asterisk.org/r/2804

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@399294 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/features_config.c

index d9a304302d56c0f8e3fa67788c5a4111e86d9b42..91e7df338a9244217970b40e31b288283222f061 100644 (file)
@@ -1348,6 +1348,11 @@ static int applicationmap_handler(const struct aco_option *opt,
                *slash = '\0';
        }
 
+       /* Some applications do not require arguments. */
+       if (!args.app_data) {
+               args.app_data = "";
+       }
+
        /* Two syntaxes allowed for applicationmap:
         * Old: foo = *1,self,NoOp,Boo!,default
         * New: foo = *1,self,NoOp(Boo!),default