summaryrefslogtreecommitdiff
path: root/src/inspstring.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/inspstring.cpp')
-rw-r--r--src/inspstring.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/inspstring.cpp b/src/inspstring.cpp
index b09a44767..38a51e82f 100644
--- a/src/inspstring.cpp
+++ b/src/inspstring.cpp
@@ -11,8 +11,6 @@
* ---------------------------------------------------
*/
-/* $Core */
-
#include "inspircd.h"
/*
@@ -206,7 +204,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)