| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2012-08-21 | nginx-1.3.5-RELEASErelease-1.3.5 | Maxim Dounin | 1 | -0/+82 | |
| 2012-08-18 | Radix tree preallocation fix. | Maxim Dounin | 1 | -1/+1 | |
| The preallocation size was calculated incorrectly and was always 8 due to sizeof(ngx_radix_tree_t) accidentally used instead of sizeof(ngx_radix_node_t). | |||||
| 2012-08-18 | Whitespace fix. | Maxim Dounin | 1 | -3/+3 | |
| 2012-08-17 | Mark logically dead code with corresponding comment. | Andrey Belov | 1 | -0/+1 | |
| Found by Coverity. | |||||
| 2012-08-17 | Mp4: removed restriction to avc1/mp4a formats (ticket #194). | Maxim Dounin | 1 | -8/+0 | |
| 2012-08-17 | Mail: fixed handling of AF_UNIX addresses in "listen". | Ruslan Ermilov | 2 | -0/+14 | |
| This makes AF_UNIX addresses in mail officially supported. | |||||
| 2012-08-17 | Removed a stale "AF_INET only" comment. | Ruslan Ermilov | 1 | -2/+0 | |
| IPv6 client connections in mail modules have been supported since r2856. | |||||
| 2012-08-17 | Mail: fixed sorting of listen addresses (ticket #187). | Ruslan Ermilov | 1 | -0/+5 | |
| For http module this problem was already fixed in r4756. | |||||
| 2012-08-16 | Geo: fixed handling of ranges without default set. | Maxim Dounin | 1 | -4/+4 | |
| The bug had appeared in 0.8.43 (r3653). Patch by Weibin Yao. | |||||
| 2012-08-16 | Crypt: fixed handling of corrupted SSHA entries in password file. | Maxim Dounin | 1 | -2/+9 | |
| Found by Coverity. | |||||
| 2012-08-16 | Map: fixed optimization of variables as values. | Maxim Dounin | 1 | -8/+2 | |
| Previous code incorrectly used ctx->var_values as an array of pointers to ngx_http_variable_value_t, but the array contains structures, not pointers. Additionally, ctx->var_values inspection failed to properly set var on match. | |||||
| 2012-08-15 | mail_core: don't let the well-known port in the "listen" directive to | Ruslan Ermilov | 1 | -15/+17 | |
| override the already set "protocol". | |||||
| 2012-08-15 | Corrected the directive name in the ngx_mail_auth_http_module error message. | Ruslan Ermilov | 1 | -1/+1 | |
| 2012-08-08 | Added three missing checks for NULL after ngx_array_push() calls. | Valentin Bartenev | 3 | -0/+10 | |
| Found by Coverity. | |||||
| 2012-08-07 | Explicitly ignore returned value from close() in ngx_event_core_init_conf(). | Andrey Belov | 1 | -1/+1 | |
| We don't have strong reason to inform about any errors reported by close() call here, and there are no other things to do with its return value. Prodded by Coverity. | |||||
| 2012-08-06 | Explicitly ignore returned value from unlink() in ngx_open_tempfile(). | Andrey Belov | 1 | -1/+1 | |
| The only thing we could potentially do here in case of error returned is to complain to error log, but we don't have log structure available here due to interface limitations. Prodded by Coverity. | |||||
| 2012-08-06 | Resolver: fixed possible memory leak in ngx_resolver_create(). | Maxim Dounin | 1 | -9/+9 | |
| Found by Coverity. | |||||
| 2012-08-03 | Fixed the -p parameter handling. | Ruslan Ermilov | 1 | -1/+1 | |
| Ensure that the path supplied always ends with a `/' except when empty. An empty value now corresponds to the current directory instead of `/'. | |||||
| 2012-08-03 | Fixed possible use of old cached times if runtime went backwards. | Maxim Dounin | 1 | -0/+4 | |
| If ngx_time_sigsafe_update() updated only ngx_cached_err_log_time, and then clock was adjusted backwards, the cached_time[slot].sec might accidentally match current seconds on next ngx_time_update() call, resulting in various cached times not being updated. Fix is to clear the cached_time[slot].sec to explicitly mark cached times are stale and need updating. | |||||
| 2012-08-03 | Added "const" to ngx_memcpy() with NGX_MEMCPY_LIMIT defined. | Maxim Dounin | 2 | -2/+2 | |
| This fixes warning produced during compilation of the ngx_http_geoip_module due to const qualifier being discarded. | |||||
| 2012-08-03 | Whitespace fix. | Maxim Dounin | 1 | -2/+2 | |
| 2012-08-02 | Removed the need in Perl to generate ZIP archive of nginx/Windows. | Ruslan Ermilov | 1 | -2/+2 | |
| 2012-08-02 | Win32: fixed build with Visual Studio 2005 Express. | Maxim Dounin | 1 | -0/+1 | |
| It is available via winetricks which makes it still usable, and has an old crtdefs.h which uses _CRT_SECURE_NO_DEPRECATE instead of _CRT_SECURE_NO_WARNINGS to suppress warnings. Reported by HAYASHI Kentaro, http://mailman.nginx.org/pipermail/nginx-devel/2012-August/002542.html | |||||
| 2012-08-01 | Reorder checks in ngx_shared_memory_add() for more consistent error messages. | Andrey Belov | 1 | -8/+8 | |
| 2012-07-31 | Simplified makefile that builds CHANGES. | Ruslan Ermilov | 1 | -26/+12 | |
| 2012-07-31 | Version bump. | Ruslan Ermilov | 2 | -3/+3 | |
| 2012-07-31 | Updated PCRE used for win32 builds. | Ruslan Ermilov | 1 | -1/+1 | |
| 2012-07-31 | release-1.3.4 tag | Ruslan Ermilov | 1 | -0/+1 | |
| 2012-07-31 | nginx-1.3.4-RELEASErelease-1.3.4 | Ruslan Ermilov | 1 | -0/+63 | |
| 2012-07-30 | Core: ipv6only is now on by default. | Ruslan Ermilov | 6 | -8/+15 | |
| There is a general consensus that this change results in better consistency between different operating systems and differently tuned operating systems. Note: this changes the width and meaning of the ipv6only field of the ngx_listening_t structure. 3rd party modules that create their own listening sockets might need fixing. | |||||
| 2012-07-30 | ngx_http_find_virtual_server() should return NGX_DECLINED if virtual server not | Valentin Bartenev | 1 | -1/+1 | |
| found. | |||||
| 2012-07-30 | Upstream: hide_headers/pass_headers inheritance fix. | Maxim Dounin | 1 | -3/+3 | |
| Hide headers and pass headers arrays might not be inherited correctly into a nested location, e.g. in configuration like server { proxy_hide_header X-Foo; location / { location /nested/ { proxy_pass_header X-Pad; } } } the X-Foo header wasn't hidden in the location /nested/. Reported by Konstantin Svist, http://mailman.nginx.org/pipermail/nginx-ru/2012-July/047555.html | |||||
| 2012-07-29 | Improved diagnostics when a directive is specified in the wrong context. | Ruslan Ermilov | 3 | -23/+16 | |
| 2012-07-29 | Removed extraneous GCC warning flags. | Ruslan Ermilov | 1 | -3/+0 | |
| 2012-07-29 | Slight optimization in ngx_http_upstream_add(): replaced an expression | Ruslan Ermilov | 1 | -1/+1 | |
| known to be constant with the constant value. | |||||
| 2012-07-29 | ngx_http_upstream_add() should return NULL if an error occurs. | Ruslan Ermilov | 1 | -2/+2 | |
| 2012-07-26 | Reduced the number of preprocessor directives. | Ruslan Ermilov | 1 | -5/+1 | |
| 2012-07-24 | When "debug_connection" is configured with a domain name, only the first | Ruslan Ermilov | 1 | -25/+66 | |
| resolved address was used. Now all addresses will be used. | |||||
| 2012-07-24 | Added the Clang compiler support. | Ruslan Ermilov | 3 | -0/+108 | |
| The -Werror is commented out to not break builds on Linux. | |||||
| 2012-07-24 | Made sure to run configure in a "C" locale. | Ruslan Ermilov | 1 | -0/+3 | |
| Otherwise, we may fail to properly detect a version of compiler. | |||||
| 2012-07-24 | Added a commented out -Wmissing-prototypes to CFLAGS. | Ruslan Ermilov | 1 | -0/+1 | |
| It is commented out to not break builds with 3rd party modules. | |||||
| 2012-07-24 | Fixed compilation with -Wmissing-prototypes. | Ruslan Ermilov | 14 | -8/+75 | |
| 2012-07-24 | Replaced a number of "else if" with "elif". | Ruslan Ermilov | 1 | -26/+10 | |
| 2012-07-23 | Win32: fixed cpu hog after process startup failure. | Maxim Dounin | 1 | -0/+1 | |
| If ngx_spawn_process() failed while starting a process, the process handle was closed but left non-NULL in the ngx_processes[] array. The handle later was used in WaitForMultipleObjects() (if there were multiple worker processes configured and at least one worker process was started successfully), resulting in infinite loop. Reported by Ricardo V G: http://mailman.nginx.org/pipermail/nginx-devel/2012-July/002494.html | |||||
| 2012-07-20 | Fixed debugging messages to account that limit_zone was renamed to limit_conn. | Ruslan Ermilov | 1 | -2/+2 | |
| 2012-07-17 | Fixed sorting of listen addresses so that wildcard address is always at | Ruslan Ermilov | 1 | -0/+5 | |
| the end (closes #187). Failure to do so could result in several listen sockets to be created instead of only one listening on wildcard address. Reported by Roman Odaisky. | |||||
| 2012-07-17 | Version bump. | Ruslan Ermilov | 2 | -3/+3 | |
| 2012-07-10 | Synchronized the license text with the FreeBSD's bsd-style-copyright. | Ruslan Ermilov | 1 | -2/+3 | |
| 2012-07-10 | release-1.3.3 tag | Maxim Dounin | 1 | -0/+1 | |
| 2012-07-10 | nginx-1.3.3-RELEASErelease-1.3.3 | Maxim Dounin | 1 | -0/+38 | |
