mirror of
https://github.com/nginx/nginx.git
synced 2026-09-01 11:02:29 +00:00
Dav: fixed Location in successful MKCOL response.
Instead of reducing URI length to not include the terminating '\0' character in 6ddaac3e0bf7, restore the terminating '/' character.
This commit is contained in:
parent
953f539215
commit
6dc0c880e5
1 changed files with 2 additions and 1 deletions
|
|
@ -513,7 +513,6 @@ ngx_http_dav_mkcol_handler(ngx_http_request_t *r, ngx_http_dav_loc_conf_t *dlcf)
|
|||
}
|
||||
|
||||
*(p - 1) = '\0';
|
||||
r->uri.len--;
|
||||
|
||||
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
|
||||
"http mkcol path: \"%s\"", path.data);
|
||||
|
|
@ -521,6 +520,8 @@ ngx_http_dav_mkcol_handler(ngx_http_request_t *r, ngx_http_dav_loc_conf_t *dlcf)
|
|||
if (ngx_create_dir(path.data, ngx_dir_access(dlcf->access))
|
||||
!= NGX_FILE_ERROR)
|
||||
{
|
||||
*(p - 1) = '/';
|
||||
|
||||
if (ngx_http_dav_location(r, path.data) != NGX_OK) {
|
||||
return NGX_HTTP_INTERNAL_SERVER_ERROR;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue