From: Jeff Peeler Date: Wed, 15 Sep 2010 21:00:03 +0000 (+0000) Subject: Merged revisions 287020 via svnmerge from X-Git-Tag: 11.0.0-beta1~2324 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eee14db850fe83fb4b4a3a73e3abb78972e23c04;p=thirdparty%2Fasterisk.git 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 --- diff --git a/main/features.c b/main/features.c index bd8cb4c146..eb70a0c89d 100644 --- a/main/features.c +++ b/main/features.c @@ -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;