Fix bug with BP and not having a trailing slash by default

This commit is contained in:
Vali0004
2025-08-02 00:21:40 -04:00
parent 7a4b24d616
commit f27d3c6120
3 changed files with 8 additions and 9 deletions

View File

@@ -236,7 +236,7 @@ namespace Utils {
for (size_t i = 0; i < sha256_len; i++) {
char buf[3];
sprintf(buf, "%02x", sha256_value[i]);
buf[2] = NULL;
buf[2] = '\0';
result += buf;
}
return result;
@@ -280,7 +280,7 @@ namespace Utils {
for (size_t i = 0; i < sha256_len; i++) {
char buf[3];
sprintf(buf, "%02x", sha256_value[i]);
buf[2] = NULL;
buf[2] = '\0';
result += buf;
}
return result;