]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/inspstring.cpp
Change "CAP *" reply to "CAP $nick", which is the intended use of the parameter
[user/henk/code/inspircd.git] / src / inspstring.cpp
index 74629bf5561de7c5945466d2e7f88c1332b05a90..38a51e82ffde04dcfc142e8989742201c56be9ea 100644 (file)
@@ -11,8 +11,6 @@
  * ---------------------------------------------------
  */
 
-/* $Core */
-
 #include "inspircd.h"
 
 /*
@@ -190,7 +188,7 @@ std::string BinToBase64(const std::string& data_str, const char* table, char pad
        }
        else if (data_str.length() == i + 2)
        {
-               buffer = (data[i] << 16 | data[i] << 8);
+               buffer = (data[i] << 16 | data[i+1] << 8);
                rv.push_back(table[0x3F & (buffer >> 18)]);
                rv.push_back(table[0x3F & (buffer >> 12)]);
                rv.push_back(table[0x3F & (buffer >>  6)]);
@@ -205,16 +203,16 @@ std::string Base64ToBin(const std::string& data_str, const char* table)
        if (!table)
                table = b64table;
 
-       bool ok = true;
        int bitcount = 0;
-       uint32_t buffer;
+       uint32_t buffer = 0;
        const char* data = data_str.c_str();
        std::string rv;
-       while (ok)
+       while (true)
        {
-               const char* find = strchr(table, *data);
-               ok = (find && find < table + 64);
-               buffer = (buffer << 6) | (ok ? find - table : 0);
+               const char* find = strchr(table, *data++);
+               if (!find || find >= table + 64)
+                       break;
+               buffer = (buffer << 6) | (find - table);
                bitcount += 6;
                if (bitcount >= 8)
                {