mod_fcgid/mod_fcgid-2.3.9-r1847623.patch
Joe Orton e58323ddbf fix env var truncation to 127 bytes (#1961948)
suppress symbol exports (#1961947)

Resolves: rhbz#1961948
Resolves: rhbz#1961947
2021-07-01 16:13:50 +01:00

17 lines
468 B
Diff

# ./pullrev.sh 1847623
http://svn.apache.org/viewvc?view=revision&revision=1847623
https://bugzilla.redhat.com/show_bug.cgi?id=1651310
--- mod_fcgid-2.3.9/modules/fcgid/fcgid_conf.h
+++ mod_fcgid-2.3.9/modules/fcgid/fcgid_conf.h
@@ -138,7 +138,7 @@
* to limit shared memory use
*/
#define INITENV_KEY_LEN 64
-#define INITENV_VAL_LEN 128
+#define INITENV_VAL_LEN 256
#define INITENV_CNT 64
typedef struct {
char initenv_key[INITENV_CNT][INITENV_KEY_LEN];