Skip to content
Snippets Groups Projects
Commit cd3a3a2d authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Fix b64 decode buf length calculation

Previously, b64_decode was being asked to decode past the end of
the application string.
parent 3e01fc3d
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #3490 passed
......@@ -2223,7 +2223,7 @@ static void apc_handler(char *strbuf, size_t slen, void *apcd)
buf = malloc(sz);
if (!buf)
return;
rc = b64_decode(buf, sz, p, slen);
rc = b64_decode(buf, sz, p, slen - (p - strbuf));
if (rc < 0) {
free(buf);
return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment