From ee71baafc4d94cf66af9dcbf408fb0230bced62a Mon Sep 17 00:00:00 2001 From: mmichelson Date: Sat, 2 May 2009 10:21:00 +0000 Subject: Move static buffers to outside for loops in app_chanspy. Similar to seanbright's commit 191422, this moves some static buffers to be defined outside of for loops since it is undefined if memory will be re-used or if the stack will grow with each iteration of the loop. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@191628 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_chanspy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/app_chanspy.c b/apps/app_chanspy.c index 18e4972a5..c4c3718cd 100644 --- a/apps/app_chanspy.c +++ b/apps/app_chanspy.c @@ -508,6 +508,8 @@ static int common_exec(struct ast_channel *chan, const struct ast_flags *flags, char nameprefix[AST_NAME_STRLEN]; char peer_name[AST_NAME_STRLEN + 5]; signed char zero_volume = 0; + char *groups[25]; + char dup_group[512]; int waitms; int res; char *ptr; @@ -557,9 +559,7 @@ static int common_exec(struct ast_channel *chan, const struct ast_flags *flags, next_channel(chan, prev, spec, exten, context, &chanspy_ds), next_chanspy_ds = NULL) { const char *group; int igrp = !mygroup; - char *groups[25]; int num_groups = 0; - char dup_group[512]; int x; char *s; -- cgit v1.2.3