randy 97/02/06 13:46:09
Modified: src CHANGES
support suexec.c
Log:
Remove free() from clean_env() in suexec wrapper.
Revision Changes Path
1.146 +3 -0 apache/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache/src/CHANGES,v
retrieving revision 1.145
retrieving revision 1.146
diff -C3 -r1.145 -r1.146
*** CHANGES 1997/02/06 21:40:34 1.145
--- CHANGES 1997/02/06 21:45:45 1.146
***************
*** 1,5 ****
--- 1,8 ----
Changes with Apache 1.2b7
+ *) Remove free() from clean_env() in suexec wrapper. This was nuking
+ the clean environment on some systems.
+
*) Tweak byteserving code (e.g. serving PDF files) to work around a
bug in Netscape Navigator. [Alexei Kosut]
1.14 +0 -1 apache/support/suexec.c
Index: suexec.c
===================================================================
RCS file: /export/home/cvs/apache/support/suexec.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -C3 -r1.13 -r1.14
*** suexec.c 1997/01/25 01:07:11 1.13
--- suexec.c 1997/02/06 21:46:08 1.14
***************
*** 199,205 ****
cleanenv[++cidx] = NULL;
environ = cleanenv;
- free(cleanenv);
}
int main(int argc, char *argv[])
--- 199,204 ----