missing plus sign for image data uris

This commit is contained in:
Sebastian 2022-05-20 10:08:56 -03:00
parent 344c53c51d
commit 68b155aab5
No known key found for this signature in database
GPG Key ID: BE4FF68352439FC1

View File

@ -322,7 +322,7 @@ TALER_url_valid_charset (const char *url)
for (unsigned int i = 0; '\0' != url[i]; i++)
{
#define ALLOWED_CHARACTERS \
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789/:;&?-.,=_~%"
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789/:;&?-.,=_~%+"
if (NULL == strchr (ALLOWED_CHARACTERS,
(int) url[i]))
return false;