diff src/http/ngx_http_variables.c @ 5434:c21e341c51cb

Removed extra allocation for $sent_http_last_modified. There is no need to allocate memory for "Last-Modified: " string, the variable only contains date itself.
author Maxim Dounin <mdounin@mdounin.ru>
date Thu, 31 Oct 2013 04:02:59 +0400
parents 7094d6da2806
children 30e806b8636a
line wrap: on
line diff
--- a/src/http/ngx_http_variables.c
+++ b/src/http/ngx_http_variables.c
@@ -1744,8 +1744,7 @@ ngx_http_variable_sent_last_modified(ngx
     }
 
     if (r->headers_out.last_modified_time >= 0) {
-        p = ngx_pnalloc(r->pool,
-                   sizeof("Last-Modified: Mon, 28 Sep 1970 06:00:00 GMT") - 1);
+        p = ngx_pnalloc(r->pool, sizeof("Mon, 28 Sep 1970 06:00:00 GMT") - 1);
         if (p == NULL) {
             return NGX_ERROR;
         }