Changeset ffe438


Ignore:
Timestamp:
04/24/09 12:23:31 (3 years ago)
Author:
George Potapov <nephrite@…>
Branches:
master-v0.7, nginx-v0.7, nginx-v0.8
Children:
9c4ca3
Parents:
48f6cd
git-author:
George Potapov <nephrite@…> (04/24/09 12:23:31)
git-committer:
George Potapov <nephrite@…> (04/24/09 12:23:31)
Message:

Vendor drop nginx v0.7.41

Location:
server
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • server/CHANGES

    r48f6cd rffe438  
     1 
     2Changes with nginx 0.7.41                                        11 Mar 2009 
     3 
     4    *) Bugfix: a segmentation fault might occur in worker process, if a  
     5       "server_name" or a "location" directives had captures in regular  
     6       expressions; the issue had appeared in 0.7.40. 
     7       Thanks to Vladimir Sopot. 
     8 
    19 
    210Changes with nginx 0.7.40                                        09 Mar 2009 
  • server/CHANGES.ru

    r48f6cd rffe438  
     1 
     2éÚÍÅÎÅÎÉÑ × nginx 0.7.41                                          11.03.2009 
     3 
     4    *) éÓÐÒÁ×ÌÅÎÉÅ: × ÒÁÂÏÞÅÍ ÐÒÏÃÅÓÓÅ ÍÏÇ ÐÒÏÉÚÏÊÔÉ segmentation fault,  
     5       ÅÓÌÉ × server_name ÉÌÉ location ÂÙÌÉ ×ÙÄÅÌÅÎÉÑ × ÒÅÇÕÌÑÒÎÙÈ  
     6       ×ÙÒÁÖÅÎÉÑÈ; ÏÛÉÂËÁ ÐÏÑ×ÉÌÁÓØ × 0.7.40. 
     7       óÐÁÓÉÂÏ ÷ÌÁÄÉÍÉÒÕ óÏÐÏÔÕ. 
     8 
    19 
    210éÚÍÅÎÅÎÉÑ × nginx 0.7.40                                          09.03.2009 
  • server/src/core/nginx.h

    r48f6cd rffe438  
    99 
    1010 
    11 #define NGINX_VERSION      "0.7.40" 
     11#define NGINX_VERSION      "0.7.41" 
    1212#define NGINX_VER          "nginx/" NGINX_VERSION 
    1313 
  • server/src/http/modules/perl/nginx.pm

    r48f6cd rffe438  
    4848); 
    4949 
    50 our $VERSION = '0.7.40'; 
     50our $VERSION = '0.7.41'; 
    5151 
    5252require XSLoader; 
  • server/src/http/ngx_http_core_module.c

    r48f6cd rffe438  
    13811381            if ((*clcfp)->captures && r->captures == NULL) { 
    13821382 
    1383                 len = (NGX_HTTP_MAX_CAPTURES + 1) * 3 * sizeof(int); 
    1384  
    1385                 r->captures = ngx_palloc(r->pool, len); 
     1383                len = (NGX_HTTP_MAX_CAPTURES + 1) * 3; 
     1384 
     1385                r->captures = ngx_palloc(r->pool, len * sizeof(int)); 
    13861386                if (r->captures == NULL) { 
    13871387                    return NGX_ERROR; 
  • server/src/http/ngx_http_request.c

    r48f6cd rffe438  
    16631663            if (sn[i].captures && r->captures == NULL) { 
    16641664 
    1665                 ncaptures = (NGX_HTTP_MAX_CAPTURES + 1) * 3 * sizeof(int); 
    1666  
    1667                 r->captures = ngx_palloc(r->pool, ncaptures); 
     1665                ncaptures = (NGX_HTTP_MAX_CAPTURES + 1) * 3; 
     1666 
     1667                r->captures = ngx_palloc(r->pool, ncaptures * sizeof(int)); 
    16681668                if (r->captures == NULL) { 
    16691669                    return NGX_ERROR; 
Note: See TracChangeset for help on using the changeset viewer.