mirror of
https://github.com/nginx/nginx.git
synced 2024-12-01 03:17:17 +08:00
r2315 merge:
fix compression pointer for big (>255) DNS responses
This commit is contained in:
parent
d0d575bcd5
commit
6ef713bdd0
@ -1836,7 +1836,7 @@ ngx_resolver_copy(ngx_resolver_t *r, ngx_str_t *name, u_char *buf, u_char *src,
|
||||
}
|
||||
|
||||
if (n & 0xc0) {
|
||||
n = (n & 0x3f << 8) + *p;
|
||||
n = ((n & 0x3f) << 8) + *p;
|
||||
p = &buf[n];
|
||||
|
||||
} else {
|
||||
@ -1886,7 +1886,7 @@ done:
|
||||
}
|
||||
|
||||
} else {
|
||||
n = (n & 0x3f << 8) + *src;
|
||||
n = ((n & 0x3f) << 8) + *src;
|
||||
src = &buf[n];
|
||||
|
||||
n = *src++;
|
||||
|
Loading…
Reference in New Issue
Block a user