From: David Vossel Date: Wed, 2 Dec 2009 15:43:56 +0000 (+0000) Subject: Merged revisions 232269 via svnmerge from X-Git-Tag: 1.6.1.12-rc1~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb240a839572654caa6773455160c5611ae1b033;p=thirdparty%2Fasterisk.git Merged revisions 232269 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ................ r232269 | dvossel | 2009-12-02 09:42:54 -0600 (Wed, 02 Dec 2009) | 15 lines Merged revisions 232268 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r232268 | dvossel | 2009-12-02 09:41:36 -0600 (Wed, 02 Dec 2009) | 9 lines fixes segfault in func_groupcount closes issue #16337) Reported by: Parantido Patches: issue_16337.diff uploaded by dvossel (license 671) Tested by: Parantido, dvossel ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@232271 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/funcs/func_groupcount.c b/funcs/func_groupcount.c index 405e0db32b..7aaddc5200 100644 --- a/funcs/func_groupcount.c +++ b/funcs/func_groupcount.c @@ -144,6 +144,10 @@ static int group_function_write(struct ast_channel *chan, const char *cmd, { char grpcat[256]; + if (!value) { + return -1; + } + if (!ast_strlen_zero(data)) { snprintf(grpcat, sizeof(grpcat), "%s@%s", value, data); } else {