aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorjpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b>2010-09-15 20:58:39 +0000
committerjpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b>2010-09-15 20:58:39 +0000
commit22eae2706da4dd25a5d95ab79f87d3b903ad706a (patch)
tree8a75b5d4576d7091a9948403ef890f1c1df201be /main
parent4c413b5265b15a0e4d65a9467230bfb85b969ccd (diff)
fix uninintialized variable
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.8@287020 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/features.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/features.c b/main/features.c
index 375870ed2..1689bb019 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;