mirror of
https://github.com/nginx/nginx.git
synced 2026-08-27 04:07:18 +00:00
fix empty string replacement in sub_filter
This commit is contained in:
parent
fa928a6c66
commit
d13045f16c
1 changed files with 8 additions and 3 deletions
|
|
@ -369,9 +369,14 @@ ngx_http_sub_body_filter(ngx_http_request_t *r, ngx_chain_t *in)
|
|||
}
|
||||
}
|
||||
|
||||
b->memory = 1;
|
||||
b->pos = ctx->sub.data;
|
||||
b->last = ctx->sub.data + ctx->sub.len;
|
||||
if (ctx->sub.len) {
|
||||
b->memory = 1;
|
||||
b->pos = ctx->sub.data;
|
||||
b->last = ctx->sub.data + ctx->sub.len;
|
||||
|
||||
} else {
|
||||
b->sync = 1;
|
||||
}
|
||||
|
||||
cl->buf = b;
|
||||
cl->next = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue