[asterisk-commits] russell: branch 1.6.0 r184844 - in /branches/1.6.0: ./ apps/app_followme.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sun Mar 29 00:52:46 CDT 2009
Author: russell
Date: Sun Mar 29 00:52:42 2009
New Revision: 184844
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=184844
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.0/ (props changed)
branches/1.6.0/apps/app_followme.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/apps/app_followme.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.0/apps/app_followme.c?view=diff&rev=184844&r1=184843&r2=184844
==============================================================================
--- branches/1.6.0/apps/app_followme.c (original)
+++ branches/1.6.0/apps/app_followme.c Sun Mar 29 00:52:42 2009
@@ -903,7 +903,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