aboutsummaryrefslogtreecommitdiff
path: root/src/http/modules/ngx_http_dav_module.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2006-07-03 16:49:20 +0000
committerIgor Sysoev <igor@sysoev.ru>2006-07-03 16:49:20 +0000
commit3186bf5369de4cf95bbfbeffc1838c4e23fba3c1 (patch)
tree66f29ec626f8f1a5d7f25fc14b4f7633429a0148 /src/http/modules/ngx_http_dav_module.c
parent9f408ae228d49b3921c1deeabce117cb9a6cc72f (diff)
downloadnginx-3186bf5369de4cf95bbfbeffc1838c4e23fba3c1.tar.gz
nginx-3186bf5369de4cf95bbfbeffc1838c4e23fba3c1.zip
nginx-0.3.52-RELEASE importrelease-0.3.52
*) Change: the ngx_http_index_module behavior for the "POST /" requests is reverted to the 0.3.40 version state: the module now does not return the 405 error. *) Bugfix: the worker process may got caught in an endless loop if the limit rate was used; the bug had appeared in 0.3.37. *) Bugfix: ngx_http_charset_module logged "unknown charset" alert, even if the recoding was not needed; the bug had appeared in 0.3.50. *) Bugfix: if a code response of the PUT request was 409, then a temporary file was not removed.
Diffstat (limited to 'src/http/modules/ngx_http_dav_module.c')
-rw-r--r--src/http/modules/ngx_http_dav_module.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/http/modules/ngx_http_dav_module.c b/src/http/modules/ngx_http_dav_module.c
index b41bd8e46..7f61774e7 100644
--- a/src/http/modules/ngx_http_dav_module.c
+++ b/src/http/modules/ngx_http_dav_module.c
@@ -254,6 +254,12 @@ ngx_http_dav_put_handler(ngx_http_request_t *r)
}
if (ngx_is_dir(&fi)) {
+ if (ngx_delete_file(temp->data) == NGX_FILE_ERROR) {
+ ngx_log_error(NGX_LOG_CRIT, r->connection->log, ngx_errno,
+ ngx_delete_file_n " \"%s\" failed",
+ temp->data);
+ }
+
ngx_http_finalize_request(r, NGX_HTTP_CONFLICT);
return;
}
@@ -296,6 +302,12 @@ ngx_http_dav_put_handler(ngx_http_request_t *r)
#endif
+ if (ngx_delete_file(temp->data) == NGX_FILE_ERROR) {
+ ngx_log_error(NGX_LOG_CRIT, r->connection->log, ngx_errno,
+ ngx_delete_file_n " \"%s\" failed",
+ temp->data);
+ }
+
ngx_http_finalize_request(r, ngx_http_dav_error(r, err, NGX_HTTP_CONFLICT,
ngx_rename_file_n,
path.data));