From f0ae21f3673c178e524e668b2a8d5e8889c4d633 Mon Sep 17 00:00:00 2001 From: skarg Date: Mon, 23 Jun 2008 00:18:38 +0000 Subject: [PATCH] Corrected uninitialized variable. --- bacnet-stack/ports/at91sam7s/dlmstp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bacnet-stack/ports/at91sam7s/dlmstp.c b/bacnet-stack/ports/at91sam7s/dlmstp.c index 9a6d2055..dd2c0ae0 100644 --- a/bacnet-stack/ports/at91sam7s/dlmstp.c +++ b/bacnet-stack/ports/at91sam7s/dlmstp.c @@ -698,7 +698,7 @@ static bool MSTP_Master_Node_FSM( uint8_t next_next_station = 0; /* timeout values */ uint16_t my_timeout = 10, ns_timeout = 0; - bool matched; + bool matched = false; /* transition immediately to the next state */ bool transition_now = false;