From cb8baf3da9155a4e6e3561031a0841f64cb941f4 Mon Sep 17 00:00:00 2001 From: Daniel De Graaf Date: Mon, 22 Feb 2010 23:50:20 -0600 Subject: Fix uninit variable warning --- src/inspstring.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/inspstring.cpp') diff --git a/src/inspstring.cpp b/src/inspstring.cpp index b09a44767..bcdcbb3c1 100644 --- a/src/inspstring.cpp +++ b/src/inspstring.cpp @@ -206,7 +206,7 @@ std::string Base64ToBin(const std::string& data_str, const char* table) table = b64table; int bitcount = 0; - uint32_t buffer; + uint32_t buffer = 0; const char* data = data_str.c_str(); std::string rv; while (true) -- cgit v1.3.1-10-gc9f91