projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
859f1fa
)
Check to see if arg is NULL before passing (#6094)
author
Matthew Fredrickson
<creslin@digium.com>
Tue, 17 Jan 2006 18:20:33 +0000
(18:20 +0000)
committer
Matthew Fredrickson
<creslin@digium.com>
Tue, 17 Jan 2006 18:20:33 +0000
(18:20 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8133
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
res/res_features.c
patch
|
blob
|
history
diff --git
a/res/res_features.c
b/res/res_features.c
index
1ffa1ae
..
0f8f5d5
100644
(file)
--- a/
res/res_features.c
+++ b/
res/res_features.c
@@
-1272,7
+1272,7
@@
int ast_bridge_call(struct ast_channel *chan,struct ast_channel *peer,struct ast
src = chan;
else if ((monitor_exec = pbx_builtin_getvar_helper(peer, "AUTO_MONITOR")))
src = peer;
- if (src) {
+ if (monitor_app && src) {
char *tmp = ast_strdupa(monitor_exec);
if (tmp) {
pbx_exec(src, monitor_app, tmp, 1);