Changeset 1987

Show
Ignore:
Timestamp:
09/06/2007 09:19:25 PM (12 months ago)
Author:
darix
Message:

- fixed crash with undefined environment variables

Location:
branches/lighttpd-1.4.x
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/lighttpd-1.4.x/NEWS

    r1985 r1987  
    88  * fixed forwarding a SIGINT and SIGHUP when using max-workers (#902) 
    99  * fixed FastCGI header overrun in mod_fastcgi (reported by mattias@secweb.se) 
    10   * fixed hanging redirects with keep-alive due to missing  
     10  * fixed hanging redirects with keep-alive due to missing 
    1111    "Content-Length: 0" headers 
     12  * fixed crashing when using undefined environment variables in the config 
    1213 
    1314 
  • branches/lighttpd-1.4.x/src/configparser.y

    r1371 r1987  
    231231 
    232232value(A) ::= key(B). { 
     233  A = NULL; 
    233234  if (strncmp(B->ptr, "env.", sizeof("env.") - 1) == 0) { 
    234235    char *env;