Changeset ffe438
- Timestamp:
- 04/24/09 12:23:31 (3 years ago)
- 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)
- Location:
- server
- Files:
-
- 6 edited
-
CHANGES (modified) (1 diff)
-
CHANGES.ru (modified) (1 diff)
-
src/core/nginx.h (modified) (1 diff)
-
src/http/modules/perl/nginx.pm (modified) (1 diff)
-
src/http/ngx_http_core_module.c (modified) (1 diff)
-
src/http/ngx_http_request.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
server/CHANGES
r48f6cd rffe438 1 2 Changes 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 1 9 2 10 Changes 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 1 9 2 10 éÚÍÅÎÅÎÉÑ × nginx 0.7.40 09.03.2009 -
server/src/core/nginx.h
r48f6cd rffe438 9 9 10 10 11 #define NGINX_VERSION "0.7.4 0"11 #define NGINX_VERSION "0.7.41" 12 12 #define NGINX_VER "nginx/" NGINX_VERSION 13 13 -
server/src/http/modules/perl/nginx.pm
r48f6cd rffe438 48 48 ); 49 49 50 our $VERSION = '0.7.4 0';50 our $VERSION = '0.7.41'; 51 51 52 52 require XSLoader; -
server/src/http/ngx_http_core_module.c
r48f6cd rffe438 1381 1381 if ((*clcfp)->captures && r->captures == NULL) { 1382 1382 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)); 1386 1386 if (r->captures == NULL) { 1387 1387 return NGX_ERROR; -
server/src/http/ngx_http_request.c
r48f6cd rffe438 1663 1663 if (sn[i].captures && r->captures == NULL) { 1664 1664 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)); 1668 1668 if (r->captures == NULL) { 1669 1669 return NGX_ERROR;
Note: See TracChangeset
for help on using the changeset viewer.
