We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c1fba2 commit ae02076Copy full SHA for ae02076
src/utils/md5.cc
@@ -13,7 +13,7 @@ std::string Md5::hexdigest(std::string& input) {
13
mbedtls_md5(reinterpret_cast<const unsigned char *>(input.c_str()),
14
input.size(), digest);
15
16
- char buf[32];
+ char buf[33];
17
for (int i = 0; i < 16; i++) {
18
sprintf(buf+i*2, "%02x", digest[i]);
19
}
0 commit comments