Be a little less strict on url decoding.

This commit is contained in:
Joris Vink 2019-07-16 21:31:32 +02:00
parent f2e17c1384
commit 0f58de36f4
1 changed files with 1 additions and 1 deletions

View File

@ -999,7 +999,7 @@ http_argument_urldecode(char *arg)
if (err != KORE_RESULT_OK)
return (err);
if (v <= 0x1f || v == 0x7f || (v >= 0x80 && v <= 0x9f))
if (v <= 0x1f || v == 0x7f)
return (KORE_RESULT_ERROR);
*in++ = (char)v;