mirror of
https://github.com/nginx/nginx.git
synced 2025-06-07 17:52:38 +08:00
fix the previous commit
This commit is contained in:
parent
2573f71e14
commit
cae66582d5
@ -324,11 +324,9 @@ ngx_event_pipe_read_upstream(ngx_event_pipe_t *p)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (cl) {
|
if (cl) {
|
||||||
while (cl->next) {
|
for (ln = cl; ln->next; ln = ln->next) { /* void */ }
|
||||||
cl = cl->next;
|
|
||||||
}
|
|
||||||
|
|
||||||
cl->next = p->free_raw_bufs;
|
ln->next = p->free_raw_bufs;
|
||||||
p->free_raw_bufs = cl;
|
p->free_raw_bufs = cl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user