Roxen.git/
server/
etc/
modules/
Roxen.pmod
Branch:
Tag:
Non-build tags
All tags
No tags
2001-02-16
2001-02-16 15:07:19 by Martin Stjernholm <mast@lysator.liu.se>
2e0591d77b259dff5ea95d933afe2406c794f14b (
15
lines) (+
9
/-
6
)
[
Show
|
Annotate
]
Branch:
5.2
Don't assume that all values in id->variables are strings.
Rev: server/etc/modules/Roxen.pmod:1.69
1:
// This is a roxen pike module. Copyright © 1999 - 2000, Roxen IS. //
-
// $Id: Roxen.pmod,v 1.
68
2001/02/
06
22
:
39
:
03
nilsson
Exp $
+
// $Id: Roxen.pmod,v 1.
69
2001/02/
16
15
:
07
:
19
mast
Exp $
#include <roxen.h> #include <config.h>
651:
foreach(indices(id->variables), tmp) { string name = replace(tmp," ","_");
-
if (id->variables[tmp] && (sizeof(
id->variables[tmp]
) < 8192)) {
+
if (
mixed value =
id->variables[tmp]
)
+
if (!catch (value = (string) value)
&& (sizeof(
value
) < 8192)) {
// Some shells/OS's don't like LARGE environment variables
-
new["QUERY_"+name] = replace(
id->variables[tmp]
,"\000"," ");
-
new["VAR_"+name] = replace(
id->variables[tmp]
,"\000","#");
+
new["QUERY_"+name] = replace(
value
,"\000"," ");
+
new["VAR_"+name] = replace(
value
,"\000","#");
}
-
+
// Is it correct to record the names for variables with no values here? /mast
if(new["VARIABLES"]) new["VARIABLES"]+= " " + name; else