From 367de1a73dae33a4551770756595993df3f314c3 Mon Sep 17 00:00:00 2001 From: Matt O'Gorman Date: Wed, 26 Apr 2006 19:22:55 +0000 Subject: Merged revisions 22596 via svnmerge from https://svn.digium.com/svn/asterisk/branches/1.2 ........ r22596 | mogorman | 2006-04-26 14:18:55 -0500 (Wed, 26 Apr 2006) | 3 lines do not allow for users to forward voicemail to themselves, patch from 7001 ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@22597 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_voicemail.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 659bd27d3..f478e8fb9 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -3426,8 +3426,8 @@ static int forward_message(struct ast_channel *chan, char *context, char *dir, i /* start optimistic */ valid_extensions = 1; while (s) { - /* find_user is going to ast_malloc since we have a NULL as first argument */ - if ((receiver = find_user(NULL, context, s))) { + /* Don't forward to ourselves. find_user is going to malloc since we have a NULL as first argument */ + if (strcmp(s,sender->mailbox) && (receiver = find_user(NULL, context, s))) { AST_LIST_INSERT_HEAD(&extensions, receiver, list); found++; } else { -- cgit v1.2.3