diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2008-07-07 09:26:13 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2008-07-07 09:26:13 +0000 |
| commit | edf1c8c1b8a83a6592714516499a18adc830eeae (patch) | |
| tree | 01983bdab8428b3647f52d14fa098140070a7389 /src/http/modules/ngx_http_flv_module.c | |
| parent | 4f677fd20377230cf959cddb39ceb4d566ce4866 (diff) | |
| download | nginx-edf1c8c1b8a83a6592714516499a18adc830eeae.tar.gz nginx-edf1c8c1b8a83a6592714516499a18adc830eeae.tar.bz2 | |
always test root existence for access_log with variables
Diffstat (limited to 'src/http/modules/ngx_http_flv_module.c')
| -rw-r--r-- | src/http/modules/ngx_http_flv_module.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/http/modules/ngx_http_flv_module.c b/src/http/modules/ngx_http_flv_module.c index a8239f16e..235ccddea 100644 --- a/src/http/modules/ngx_http_flv_module.c +++ b/src/http/modules/ngx_http_flv_module.c @@ -159,6 +159,8 @@ ngx_http_flv_handler(ngx_http_request_t *r) return NGX_DECLINED; } + r->root_tested = 1; + start = 0; len = of.size; i = 1; |
