aboutsummaryrefslogtreecommitdiff
path: root/src/inspstring.cpp
diff options
context:
space:
mode:
authorGravatar Daniel De Graaf2010-02-22 23:50:20 -0600
committerGravatar Daniel De Graaf2010-08-03 17:32:37 -0400
commitcb8baf3da9155a4e6e3561031a0841f64cb941f4 (patch)
tree12f71e4633cc2e1223b9ca87909a363ad1a405e0 /src/inspstring.cpp
parentChange protcol sync to not use opaque pointers (diff)
Fix uninit variable warning
Diffstat (limited to 'src/inspstring.cpp')
-rw-r--r--src/inspstring.cpp2
1 files changed, 1 insertions, 1 deletions
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)