comparison src/http/ngx_http_request_body.c @ 7911:d869e43643ac

Request body: missing comments about initialization.
author Maxim Dounin <mdounin@mdounin.ru>
date Sun, 29 Aug 2021 22:20:49 +0300
parents 967cfa6e2ff8
children 96e09beaa2cf
comparison
equal deleted inserted replaced
7910:1d78437dbc3f 7911:d869e43643ac
60 } 60 }
61 61
62 /* 62 /*
63 * set by ngx_pcalloc(): 63 * set by ngx_pcalloc():
64 * 64 *
65 * rb->temp_file = NULL;
65 * rb->bufs = NULL; 66 * rb->bufs = NULL;
66 * rb->buf = NULL; 67 * rb->buf = NULL;
67 * rb->free = NULL; 68 * rb->free = NULL;
68 * rb->busy = NULL; 69 * rb->busy = NULL;
69 * rb->chunked = NULL; 70 * rb->chunked = NULL;
71 * rb->received = 0;
70 */ 72 */
71 73
72 rb->rest = -1; 74 rb->rest = -1;
73 rb->post_handler = post_handler; 75 rb->post_handler = post_handler;
74 76