mirror of https://github.com/openresty/openresty
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
478 B
Diff
12 lines
478 B
Diff
--- nginx-1.0.10/src/http/ngx_http_core_module.c 2011-11-01 21:45:33.000000000 +0800
|
|
+++ nginx-1.0.10-patched/src/http/ngx_http_core_module.c 2011-12-22 11:08:02.546297974 +0800
|
|
@@ -2070,7 +2070,7 @@
|
|
* Opera: "gzip, deflate"
|
|
*/
|
|
|
|
- if (ngx_memcmp(ae->value.data, "gzip,", 5) != 0
|
|
+ if (ngx_memcmp(ae->value.data, "gzip,", ngx_min(ae->value.len, 5)) != 0
|
|
&& ngx_http_gzip_accept_encoding(&ae->value) != NGX_OK)
|
|
{
|
|
return NGX_DECLINED;
|