]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Issue 9818 - Fix for issue 8329 breaks pbx_realtime. Issue 8329 will remain unfixed...
authorTilghman Lesher <tilghman@meg.abyt.es>
Thu, 31 May 2007 15:58:45 +0000 (15:58 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Thu, 31 May 2007 15:58:45 +0000 (15:58 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@66744 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_macro.c

index 75c2e3cf1740959b5d608615dbf3f5b02759641e..4002a8b00381ef20049de39026e4c4de6fe82230 100644 (file)
@@ -266,22 +266,23 @@ static int macro_exec(struct ast_channel *chan, void *data)
        while(ast_exists_extension(chan, chan->context, chan->exten, chan->priority, chan->cid.cid_num)) {
                struct ast_context *c;
                struct ast_exten *e;
+               runningapp[0] = '\0';
+               runningdata[0] = '\0';
 
                /* What application will execute? */
                if (ast_lock_contexts()) {
                        ast_log(LOG_WARNING, "Failed to lock contexts list\n");
-                       e = NULL;
                } else {
                        for (c = ast_walk_contexts(NULL), e = NULL; c; c = ast_walk_contexts(c)) {
                                if (!strcmp(ast_get_context_name(c), chan->context)) {
                                        if (ast_lock_context(c)) {
                                                ast_log(LOG_WARNING, "Unable to lock context?\n");
-                                               runningapp[0] = '\0';
-                                               runningdata[0] = '\0';
                                        } else {
                                                e = find_matching_priority(c, chan->exten, chan->priority, chan->cid.cid_num);
-                                               ast_copy_string(runningapp, ast_get_extension_app(e), sizeof(runningapp));
-                                               ast_copy_string(runningdata, ast_get_extension_app_data(e), sizeof(runningdata));
+                                               if (e) { /* This will only be undefined for pbx_realtime, which is majorly broken. */
+                                                       ast_copy_string(runningapp, ast_get_extension_app(e), sizeof(runningapp));
+                                                       ast_copy_string(runningdata, ast_get_extension_app_data(e), sizeof(runningdata));
+                                               }
                                                ast_unlock_context(c);
                                        }
                                        break;