fix the previous commit

This commit is contained in:
Igor Sysoev 2006-11-19 07:27:10 +00:00
parent 2573f71e14
commit cae66582d5

View File

@ -324,11 +324,9 @@ ngx_event_pipe_read_upstream(ngx_event_pipe_t *p)
}
if (cl) {
while (cl->next) {
cl = cl->next;
}
for (ln = cl; ln->next; ln = ln->next) { /* void */ }
cl->next = p->free_raw_bufs;
ln->next = p->free_raw_bufs;
p->free_raw_bufs = cl;
}
}