Changeset 1872
- Timestamp:
- 06/15/2007 03:04:56 PM (1 year ago)
- Files:
-
- branches/lighttpd-1.4.x/NEWS (modified) (1 diff)
- branches/lighttpd-1.4.x/src/mod_accesslog.c (modified) (1 diff)
- branches/lighttpd-1.4.x/src/mod_scgi.c (modified) (1 diff)
- branches/lighttpd-1.4.x/src/mod_ssi.c (modified) (1 diff)
- branches/lighttpd-1.4.x/src/proc_open.c (modified) (1 diff)
- branches/lighttpd-1.4.x/src/spawn-fcgi.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/lighttpd-1.4.x/NEWS
r1778 r1872 3 3 NEWS 4 4 ==== 5 6 - 1.4.16 - 7 8 * fixed typecast of NULL on execl() (#1235) 9 * fixed circumventing url.access-deny by trailing slash (#1230) 10 * fixed crash on duplicate headers with trailing WS (#1232) 5 11 6 12 - 1.4.15 - 2007-04-13 branches/lighttpd-1.4.x/src/mod_accesslog.c
r1731 r1872 508 508 */ 509 509 510 execl("/bin/sh", "sh", "-c", s->access_logfile->ptr + 1, NULL);510 execl("/bin/sh", "sh", "-c", s->access_logfile->ptr + 1, (char *)NULL); 511 511 512 512 log_error_write(srv, __FILE__, __LINE__, "sss", branches/lighttpd-1.4.x/src/mod_scgi.c
r1501 r1872 804 804 805 805 /* exec the cgi */ 806 execle("/bin/sh", "sh", "-c", b->ptr, NULL, env.ptr);806 execle("/bin/sh", "sh", "-c", b->ptr, (char *)NULL, env.ptr); 807 807 808 808 log_error_write(srv, __FILE__, __LINE__, "sbs", branches/lighttpd-1.4.x/src/mod_ssi.c
r1371 r1872 703 703 close(STDIN_FILENO); 704 704 705 execl("/bin/sh", "sh", "-c", cmd, NULL);705 execl("/bin/sh", "sh", "-c", cmd, (char *)NULL); 706 706 707 707 log_error_write(srv, __FILE__, __LINE__, "sss", "spawing exec failed:", strerror(errno), cmd); branches/lighttpd-1.4.x/src/proc_open.c
r1371 r1872 256 256 proc_close_parents(proc); 257 257 258 execl(shell, shell, "-c", command, NULL);258 execl(shell, shell, "-c", command, (char *)NULL); 259 259 _exit(127); 260 260 branches/lighttpd-1.4.x/src/spawn-fcgi.c
r1371 r1872 170 170 171 171 /* exec the cgi */ 172 execl("/bin/sh", "sh", "-c", b, NULL);172 execl("/bin/sh", "sh", "-c", b, (char *)NULL); 173 173 174 174 exit(errno);

