aboutsummaryrefslogtreecommitdiffstats
path: root/src/inspstring.cpp
diff options
context:
space:
mode:
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)