[asterisk-commits] russell: branch 1.6.1 r184845 - in /branches/1.6.1: ./ apps/app_followme.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sun Mar 29 00:53:02 CDT 2009
Author: russell
Date: Sun Mar 29 00:52:59 2009
New Revision: 184845
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=184845
Log:
Merged revisions 184843 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
................
r184843 | russell | 2009-03-29 00:52:20 -0500 (Sun, 29 Mar 2009) | 13 lines
Merged revisions 184842 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r184842 | russell | 2009-03-29 00:51:55 -0500 (Sun, 29 Mar 2009) | 5 lines
Ensure targs variable is fully initialized.
(closes issue #14758)
Reported by: tim_ringenbach
........
................
Modified:
branches/1.6.1/ (props changed)
branches/1.6.1/apps/app_followme.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/apps/app_followme.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.1/apps/app_followme.c?view=diff&rev=184845&r1=184844&r2=184845
==============================================================================
--- branches/1.6.1/apps/app_followme.c (original)
+++ branches/1.6.1/apps/app_followme.c Sun Mar 29 00:52:59 2009
@@ -899,7 +899,7 @@
static int app_exec(struct ast_channel *chan, void *data)
{
- struct fm_args targs;
+ struct fm_args targs = { 0, };
struct ast_bridge_config config;
struct call_followme *f;
struct number *nm, *newnm;
More information about the asterisk-commits
mailing list