pike.git/
src/
modules/
_Roxen/
roxen.c
Branch:
Tag:
Non-build tags
All tags
No tags
2014-10-08
2014-10-08 17:19:05 by Henrik Grubbström (Grubba) <grubba@grubba.org>
e8bce6d7460b31bb81d69146f51635e3f6448037 (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
8.1
_Roxen: Fixed bug in http_decode_string().
Due to forward patching...
388:
PCHARP foo, end; struct string_builder newstr;
-
if (!args || Pike_sp[-args]
.type
!= PIKE_T_STRING)
+
if (!args ||
TYPEOF(
Pike_sp[-args]
)
!= PIKE_T_STRING)
Pike_error("Invalid argument to http_decode_string(string).\n"); foo = MKPCHARP_STR(Pike_sp[-args].u.string);