mirror of
https://github.com/nginx/nginx.git
synced 2024-11-24 04:49:01 +08:00
Core: slight optimization in ngx_chain_update_chains().
It is not necessary to traverse *busy and link the *out when *out is NULL.
This commit is contained in:
parent
8e9f1df637
commit
42298aeb13
@ -186,17 +186,19 @@ ngx_chain_update_chains(ngx_pool_t *p, ngx_chain_t **free, ngx_chain_t **busy,
|
||||
{
|
||||
ngx_chain_t *cl;
|
||||
|
||||
if (*busy == NULL) {
|
||||
*busy = *out;
|
||||
if (*out) {
|
||||
if (*busy == NULL) {
|
||||
*busy = *out;
|
||||
|
||||
} else {
|
||||
for (cl = *busy; cl->next; cl = cl->next) { /* void */ }
|
||||
} else {
|
||||
for (cl = *busy; cl->next; cl = cl->next) { /* void */ }
|
||||
|
||||
cl->next = *out;
|
||||
cl->next = *out;
|
||||
}
|
||||
|
||||
*out = NULL;
|
||||
}
|
||||
|
||||
*out = NULL;
|
||||
|
||||
while (*busy) {
|
||||
cl = *busy;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user