From c5d1558f0fadb0c9e93509beb81e203ab035b5db Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 19 Jun 2005 06:36:08 +0000 Subject: [PATCH] Fix uninitialized variable warning. --- stepmania/src/crypto51/asn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/crypto51/asn.cpp b/stepmania/src/crypto51/asn.cpp index e884e9e8b1..1a96c72e34 100644 --- a/stepmania/src/crypto51/asn.cpp +++ b/stepmania/src/crypto51/asn.cpp @@ -71,7 +71,7 @@ bool BERLengthDecode(BufferedTransformation &bt, unsigned int &length, bool &def bool BERLengthDecode(BufferedTransformation &bt, unsigned int &length) { - bool definiteLength; + bool definiteLength = false; if (!BERLengthDecode(bt, length, definiteLength)) BERDecodeError(); return definiteLength;