]> git.kaiwu.me - nginx.git/commitdiff
fix for Linix/ppc64 or FreeBSD/amd64 in 32-bit mode,
authorIgor Sysoev <igor@sysoev.ru>
Fri, 22 Dec 2006 20:30:26 +0000 (20:30 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Fri, 22 Dec 2006 20:30:26 +0000 (20:30 +0000)
the same as in r934

src/core/ngx_cycle.c

index 736600f0db284b9216008f8853b63320aafc0c38..a3effb205828dfc5b67d7ddb0299965f33f88d66 100644 (file)
@@ -759,7 +759,7 @@ ngx_create_pidfile(ngx_str_t *name, ngx_log_t *log)
     size_t            len;
     ngx_uint_t        trunc;
     ngx_file_t        file;
-    u_char            pid[NGX_INT64_LEN];
+    u_char            pid[NGX_INT64_LEN + 2];
 
     ngx_memzero(&file, sizeof(ngx_file_t));
 
@@ -778,7 +778,7 @@ ngx_create_pidfile(ngx_str_t *name, ngx_log_t *log)
     }
 
     if (!ngx_test_config) {
-        len = ngx_sprintf(pid, "%P%N", ngx_pid) - pid;
+        len = ngx_snprintf(pid, NGX_INT64_LEN + 2, "%P%N", ngx_pid) - pid;
 
         if (ngx_write_file(&file, pid, len, 0) == NGX_ERROR) {
             return NGX_ERROR;