Browse Source
When parsing URI parameters, the following case was not detected: ?param1¶m2=value The absence of a value for param1 was missed because the code would look for the '=' character in the next parameter (as if there was a single parameter named 'param1¶m2'). Fix that by checking that the '=' delimiter comes before the next '&' delimiter, if any.master
2 changed files with 9 additions and 4 deletions
Loading…
Reference in new issue