Fix uninitialized variable warning.

This commit is contained in:
Steve Checkoway
2005-06-19 06:36:08 +00:00
parent d90d69f934
commit c5d1558f0f
+1 -1
View File
@@ -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;