From 3365b1cc9fd629381e341c2291fc0cfb53a44c36 Mon Sep 17 00:00:00 2001 From: tilghman Date: Sat, 3 Dec 2005 19:25:33 +0000 Subject: Bug 5858 - Make the chanvars.c functions return a 'const char *' This should prevent us from unintentionally changing variable values when they're returned from pbx_builtin_getvar_helper. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@7304 f38db490-d61c-443f-a65b-d21fe96a405b --- res/res_monitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'res/res_monitor.c') diff --git a/res/res_monitor.c b/res/res_monitor.c index 35366bdf0..d805788eb 100644 --- a/res/res_monitor.c +++ b/res/res_monitor.c @@ -212,7 +212,6 @@ int ast_monitor_start( struct ast_channel *chan, const char *format_spec, /* Stop monitoring a channel */ int ast_monitor_stop(struct ast_channel *chan, int need_lock) { - char *execute, *execute_args; int delfiles = 0; if (need_lock) { @@ -261,6 +260,7 @@ int ast_monitor_stop(struct ast_channel *chan, int need_lock) char *name = chan->monitor->filename_base; int directory = strchr(name, '/') ? 1 : 0; char *dir = directory ? "" : ast_config_AST_MONITOR_DIR; + const char *execute, *execute_args; /* Set the execute application */ execute = pbx_builtin_getvar_helper(chan, "MONITOR_EXEC"); -- cgit v1.2.3