From afb6bac829ece9675a36244b816a5e58c4971c47 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Wed, 10 Mar 2010 20:54:03 +0000 Subject: [PATCH] Hmmm, apparently needed to be fixed in trunk, too. (closes issue #16900) Reported by: bluecrow76 Patches: asterisk-1.6.2.4-func_strings.diff uploaded by bluecrow76 (license 270) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@251682 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- funcs/func_strings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/funcs/func_strings.c b/funcs/func_strings.c index a389eaf415..fa0174c60d 100644 --- a/funcs/func_strings.c +++ b/funcs/func_strings.c @@ -552,7 +552,7 @@ static int listfilter(struct ast_channel *chan, const char *cmd, char *parse, ch ast_str_append(result_ptr, len, "%s", delim); } - ast_str_append_substr(result_ptr, len, begin, cur - begin + 1); + ast_str_append_substr(result_ptr, len, begin, cur - begin); first = 0; begin = cur + dlen; }