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
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@287021 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Jeff Peeler 2010-09-15 21:00:03 +00:00
parent c1af98603b
commit eee14db850
1 changed files with 1 additions and 1 deletions

View File

@ -744,7 +744,7 @@ static struct parkeduser *park_space_reserve(struct ast_channel *chan, struct as
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;