[asterisk-commits] jpeeler: trunk r287021 - in /trunk: ./ main/features.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Sep 15 16:00:06 CDT 2010


Author: jpeeler
Date: Wed Sep 15 16:00:03 2010
New Revision: 287021

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=287021
Log:
Merged revisions 287020 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.8

........
  r287020 | jpeeler | 2010-09-15 15:58:39 -0500 (Wed, 15 Sep 2010) | 1 line
  
  fix uninintialized variable
........

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

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.

Modified: trunk/main/features.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/features.c?view=diff&rev=287021&r1=287020&r2=287021
==============================================================================
--- trunk/main/features.c (original)
+++ trunk/main/features.c Wed Sep 15 16:00:03 2010
@@ -744,7 +744,7 @@
 	int i, parking_space = -1, parking_range;
 	const char *parkinglotname = NULL;
 	const char *parkingexten;
-	struct ast_parkinglot *parkinglot;
+	struct ast_parkinglot *parkinglot = NULL;
 
 	if (args->parkinglot) {
 		parkinglot = args->parkinglot;




More information about the asterisk-commits mailing list