[asterisk-commits] russell: trunk r43478 - in /trunk: ./ main/frame.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Fri Sep 22 07:04:47 MST 2006


Author: russell
Date: Fri Sep 22 09:04:46 2006
New Revision: 43478

URL: http://svn.digium.com/view/asterisk?rev=43478&view=rev
Log:
Merged revisions 43477 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r43477 | russell | 2006-09-22 10:02:58 -0400 (Fri, 22 Sep 2006) | 3 lines

Suppress a compiler warning about the use of a potentially uninitialized
variable.  It couldn't actually happen, though.

........

Modified:
    trunk/   (props changed)
    trunk/main/frame.c

Propchange: trunk/
------------------------------------------------------------------------------
--- branch-1.4-merged (original)
+++ branch-1.4-merged Fri Sep 22 09:04:46 2006
@@ -1,1 +1,1 @@
-/branches/1.4:1-43376,43383,43386,43388,43392,43396,43405,43410,43422,43441,43445,43450,43454,43456,43464,43466,43469
+/branches/1.4:1-43376,43383,43386,43388,43392,43396,43405,43410,43422,43441,43445,43450,43454,43456,43464,43466,43469,43477

Modified: trunk/main/frame.c
URL: http://svn.digium.com/view/asterisk/trunk/main/frame.c?rev=43478&r1=43477&r2=43478&view=diff
==============================================================================
--- trunk/main/frame.c (original)
+++ trunk/main/frame.c Fri Sep 22 09:04:46 2006
@@ -418,7 +418,7 @@
 struct ast_frame *ast_frdup(const struct ast_frame *f)
 {
 	struct ast_frame_cache *frames;
-	struct ast_frame *out;
+	struct ast_frame *out = NULL;
 	int len, srclen = 0;
 	void *buf = NULL;
 



More information about the asterisk-commits mailing list