Decode all url encoded components properly.

This commit is contained in:
Joris Vink 2013-10-18 12:32:00 +02:00
parent ca05fb74d1
commit 5d027b7a21
1 changed files with 1 additions and 1 deletions

View File

@ -581,7 +581,7 @@ http_argument_urldecode(char *arg)
h[3] = *(p + 2);
h[4] = '\0';
v = kore_strtonum(h, 16, 32, 127, &err);
v = kore_strtonum(h, 16, 0, 255, &err);
if (err != KORE_RESULT_OK)
return (err);