[server,proxy] ensure PEM length is strlen(pem) + 1

The decoded base64 data might contain PEM with/without/with multiple
'\0' at the end of the string. We do not want to drag this through our
code so ensure the length matches the string length including '\0'
This commit is contained in:
akallabeth 2023-04-14 16:15:16 +02:00 committed by akallabeth
parent 7f2714a341
commit 4d663682bc
1 changed files with 1 additions and 1 deletions

View File

@ -410,7 +410,7 @@ static char* pf_config_decode_base64(const char* data, const char* name, size_t*
return NULL;
}
*pLength = decoded_length;
*pLength = strnlen(decoded, decoded_length) + 1;
return decoded;
}