Merge of r4018:

Fix buffer overrun under Windows.
This commit is contained in:
Igor Sysoev 2011-08-29 13:11:47 +00:00
parent 5f593bbc51
commit 3648d88432
1 changed files with 2 additions and 1 deletions

View File

@ -228,7 +228,8 @@ ngx_win32_rename_file(ngx_str_t *from, ngx_str_t *to, ngx_log_t *log)
ngx_uint_t collision;
ngx_atomic_uint_t num;
name = ngx_alloc(to->len + 1 + 10 + 1 + sizeof("DELETE"), log);
name = ngx_alloc(to->len + 1 + NGX_ATOMIC_T_LEN + 1 + sizeof("DELETE"),
log);
if (name == NULL) {
return NGX_ENOMEM;
}