From: Valentin Bartenev Date: Wed, 4 Mar 2015 16:20:30 +0000 (+0300) Subject: Log: use ngx_cpymem() in a couple of places, no functional changes. X-Git-Tag: release-1.7.11~54 X-Git-Url: http://www.kaiwu.me/postgresql/commit/static/gitweb.js?a=commitdiff_plain;h=a9a01e09380466339cc2f7769e7d0263841cded1;p=nginx.git Log: use ngx_cpymem() in a couple of places, no functional changes. --- diff --git a/src/core/ngx_log.c b/src/core/ngx_log.c index 0cf235998..bfda8eea3 100644 --- a/src/core/ngx_log.c +++ b/src/core/ngx_log.c @@ -97,10 +97,8 @@ ngx_log_error_core(ngx_uint_t level, ngx_log_t *log, ngx_err_t err, last = errstr + NGX_MAX_ERROR_STR; - ngx_memcpy(errstr, ngx_cached_err_log_time.data, - ngx_cached_err_log_time.len); - - p = errstr + ngx_cached_err_log_time.len; + p = ngx_cpymem(errstr, ngx_cached_err_log_time.data, + ngx_cached_err_log_time.len); p = ngx_slprintf(p, last, " [%V] ", &err_levels[level]); @@ -248,9 +246,8 @@ ngx_log_stderr(ngx_err_t err, const char *fmt, ...) u_char errstr[NGX_MAX_ERROR_STR]; last = errstr + NGX_MAX_ERROR_STR; - p = errstr + 7; - ngx_memcpy(errstr, "nginx: ", 7); + p = ngx_cpymem(errstr, "nginx: ", 7); va_start(args, fmt); p = ngx_vslprintf(p, last, fmt, args);