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