diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-09-23 06:32:00 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-09-23 06:32:00 +0000 |
commit | f7abd72716bf9499581a010d7c2bf21da7987ba9 (patch) | |
tree | b61b7d1e2d315980cf2eab7c86461dd6dac164cc /src/core/ngx_buf.c | |
parent | 85080d09ad785214243d60474d25894fcf24e27d (diff) | |
download | nginx-f7abd72716bf9499581a010d7c2bf21da7987ba9.tar.gz nginx-f7abd72716bf9499581a010d7c2bf21da7987ba9.zip |
nginx-0.0.11-2004-09-23-10:32:00 import
Diffstat (limited to 'src/core/ngx_buf.c')
-rw-r--r-- | src/core/ngx_buf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/ngx_buf.c b/src/core/ngx_buf.c index 9c5266a73..16398a638 100644 --- a/src/core/ngx_buf.c +++ b/src/core/ngx_buf.c @@ -21,6 +21,7 @@ ngx_buf_t *ngx_create_temp_buf(ngx_pool_t *pool, size_t size) b->temporary = 1; /* + b->file_pos = 0; b->file_last = 0; @@ -28,7 +29,8 @@ ngx_buf_t *ngx_create_temp_buf(ngx_pool_t *pool, size_t size) b->shadow = NULL; b->tag = 0; - */ + + */ return b; } |