You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Passing strings containing empty values (like "[...]emptyparam=&[...]") to
HTTPInterprete leads to a range check error.
Here's a workaround that works for me (dorHTTPStub.pas, line 231):
if (i + 1) <= Length(S) then
value := TSuperObject.Create(PSOChar(@S[i+1]))
else // empty value
value := TSuperObject.Create('');
Original issue reported on code.google.com by schnaade...@gmail.com on 15 Feb 2012 at 11:34
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
schnaade...@gmail.com
on 15 Feb 2012 at 11:34The text was updated successfully, but these errors were encountered: