comparison src/http/modules/ngx_http_ssi_filter_module.c @ 620:b4dcae568a2a NGINX_1_0_0

nginx 1.0.0 *) Bugfix: a cache manager might hog CPU after reload. Thanks to Maxim Dounin. *) Bugfix: an "image_filter crop" directive worked incorrectly coupled with an "image_filter rotate 180" directive. *) Bugfix: a "satisfy any" directive disabled custom 401 error page.
author Igor Sysoev <http://sysoev.ru>
date Tue, 12 Apr 2011 00:00:00 +0400
parents 53f5f04a64b8
children f200748c0ac8
comparison
equal deleted inserted replaced
619:c4e0de226b0b 620:b4dcae568a2a
1900 1900
1901 ngx_unescape_uri(&dst, &src, uri->len, NGX_UNESCAPE_URI); 1901 ngx_unescape_uri(&dst, &src, uri->len, NGX_UNESCAPE_URI);
1902 1902
1903 len = (uri->data + uri->len) - src; 1903 len = (uri->data + uri->len) - src;
1904 if (len) { 1904 if (len) {
1905 dst = ngx_copy(dst, src, len); 1905 dst = ngx_movemem(dst, src, len);
1906 } 1906 }
1907 1907
1908 uri->len = dst - uri->data; 1908 uri->len = dst - uri->data;
1909 1909
1910 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, 1910 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,