comparison src/http/modules/ngx_http_flv_module.c @ 1374:aabbf66b61ea

omit unnecessary conditions
author Igor Sysoev <igor@sysoev.ru>
date Tue, 07 Aug 2007 10:56:09 +0000
parents cc114c85be0f
children f497ed7682a7
comparison
equal deleted inserted replaced
1373:fdea12ffb24a 1374:aabbf66b61ea
89 return NGX_DECLINED; 89 return NGX_DECLINED;
90 } 90 }
91 91
92 rc = ngx_http_discard_request_body(r); 92 rc = ngx_http_discard_request_body(r);
93 93
94 if (rc != NGX_OK && rc != NGX_AGAIN) { 94 if (rc != NGX_OK) {
95 return rc; 95 return rc;
96 } 96 }
97 97
98 if (ngx_http_map_uri_to_path(r, &path, &root, 0) == NULL) { 98 if (ngx_http_map_uri_to_path(r, &path, &root, 0) == NULL) {
99 return NGX_HTTP_INTERNAL_SERVER_ERROR; 99 return NGX_HTTP_INTERNAL_SERVER_ERROR;