commit | 95cff3e9d0ff88815b481bfefef675e52632da5d | [log] [tgz] |
---|---|---|
author | Igor Sysoev <igor@sysoev.ru> | Fri Jan 16 15:58:27 2009 +0000 |
committer | Igor Sysoev <igor@sysoev.ru> | Fri Jan 16 15:58:27 2009 +0000 |
tree | c4abfc57af51b8d3930e355d0bb30f8ef5de7b2b | |
parent | 287c22f788d6f451500c3e19214d25431cd88ac9 [diff] |
repeat r2448 for range deletion
diff --git a/src/http/modules/ngx_http_geo_module.c b/src/http/modules/ngx_http_geo_module.c index cbf67c2..5dfa58f 100644 --- a/src/http/modules/ngx_http_geo_module.c +++ b/src/http/modules/ngx_http_geo_module.c
@@ -670,7 +670,12 @@ for (n = start; n < end; n += 0x10000) { h = n >> 16; - s = n & 0xffff; + + if (n == start) { + s = n & 0xffff; + } else { + s = 0; + } if ((n | 0xffff) > end) { e = end & 0xffff;