Skip to content

Commit 03b9832

Browse files
committed
* modules/fcgid/fcgid_conf.h: Bump maximum env var size to 256 bytes.
Increases sizeof(fcgid_command) from 13K to 21K on x86_64 but 128 is a fairly restrictive env var length, so seems worthwhile. git-svn-id: https://svn.apache.org/repos/asf/httpd/mod_fcgid/trunk@1847623 13f79535-47bb-0310-9956-ffa450edef68
1 parent acf4d24 commit 03b9832

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/fcgid/fcgid_conf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ typedef struct {
138138
* to limit shared memory use
139139
*/
140140
#define INITENV_KEY_LEN 64
141-
#define INITENV_VAL_LEN 128
141+
#define INITENV_VAL_LEN 256
142142
#define INITENV_CNT 64
143143
typedef struct {
144144
char initenv_key[INITENV_CNT][INITENV_KEY_LEN];

0 commit comments

Comments
 (0)