mirror of
https://github.com/nginx/nginx.git
synced 2024-12-12 18:29:00 +08:00
Core: fixed default log initialization.
The ngx_log_insert() function may invalidate pointer passed to it, so make sure to don't use it after the ngx_log_insert() call.
This commit is contained in:
parent
248baf4262
commit
c54899ddfd
@ -387,20 +387,22 @@ ngx_log_open_default(ngx_cycle_t *cycle)
|
|||||||
return NGX_ERROR;
|
return NGX_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
log->log_level = NGX_LOG_ERR;
|
|
||||||
ngx_log_insert(&cycle->new_log, log);
|
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
/* no error logs at all */
|
/* no error logs at all */
|
||||||
log = &cycle->new_log;
|
log = &cycle->new_log;
|
||||||
log->log_level = NGX_LOG_ERR;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
log->log_level = NGX_LOG_ERR;
|
||||||
|
|
||||||
log->file = ngx_conf_open_file(cycle, &error_log);
|
log->file = ngx_conf_open_file(cycle, &error_log);
|
||||||
if (log->file == NULL) {
|
if (log->file == NULL) {
|
||||||
return NGX_ERROR;
|
return NGX_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (log != &cycle->new_log) {
|
||||||
|
ngx_log_insert(&cycle->new_log, log);
|
||||||
|
}
|
||||||
|
|
||||||
return NGX_OK;
|
return NGX_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user