nginx/src
Maxim Dounin 8cf734c7b4 Variables: fixed non-indexed access of prefix vars (ticket #600).
Previously, a configuration like

    location / {
        ssi on;
        ssi_types *;
        set $http_foo "bar";
        return 200 '<!--#echo var="http_foo" -->\n';
    }

resulted in NULL pointer dereference in ngx_http_get_variable() as
the variable was explicitly added to the variables hash, but its
get_handler wasn't properly set in the hash.  Fix is to make sure
that get_handler is properly set by ngx_http_variables_init_vars().
2014-08-27 21:38:04 +04:00
..
core Resolver: notify all waiting requests on timeout. 2014-08-19 15:43:26 +04:00
event Events: removed unused variable in ngx_poll_process_events(). 2014-08-10 17:44:46 +04:00
http Variables: fixed non-indexed access of prefix vars (ticket #600). 2014-08-27 21:38:04 +04:00
mail Mail: fixed number of arguments allowed in the listen directive. 2014-08-20 13:13:27 +04:00
misc Style: fix typo. 2014-07-08 03:03:14 -07:00
mysql Copyright updated. 2012-01-18 15:07:43 +00:00
os Style: use ngx_free() instead of free(). 2014-08-03 03:27:39 +09:00