Merge pull request #7826 from mshabunin:fix-base64-issue

This commit is contained in:
Alexander Alekhin
2016-12-08 17:01:33 +00:00
+2
View File
@@ -7513,6 +7513,8 @@ bool base64::base64_valid(uint8_t const * src, size_t off, size_t cnt)
return false;
if (cnt == 0U)
cnt = std::strlen(reinterpret_cast<char const *>(src));
if (cnt == 0U)
return false;
if (cnt & 0x3U)
return false;