summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Rose <jrose@digium.com>2011-11-11 15:47:39 +0000
committerJonathan Rose <jrose@digium.com>2011-11-11 15:47:39 +0000
commit8d994bed55d1bd742e43fd5cf8fef6858e557450 (patch)
tree85a03a7888a7ad1a0cabf85ab7d33a39993b0610
parent751488b84cc18f0a93cd5ab8875ec3c348a1a408 (diff)
Fix a segmentation fault when using an extension with CID matching and no CID.
Attempting to call an extension which used Caller ID matching with a channel that has an empty caller id string would result in a segmentation fault. (closes issue ASTERISK-18392 Reported By: Ales Zelenik ........ Merged revisions 344608 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 344609 from http://svn.asterisk.org/svn/asterisk/branches/10 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@344610 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--main/pbx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/pbx.c b/main/pbx.c
index 973a44b9c..275a6a7bf 100644
--- a/main/pbx.c
+++ b/main/pbx.c
@@ -2614,7 +2614,7 @@ static int extension_match_core(const char *pattern, const char *data, enum ext_
prof_id = ast_add_profile("ext_match", 0);
}
ast_mark(prof_id, 1);
- i = _extension_match_core(pattern, data, mode);
+ i = _extension_match_core(ast_strlen_zero(pattern) ? "" : pattern, ast_strlen_zero(data) ? "" : data, mode);
ast_mark(prof_id, 0);
return i;
}