提交 a6017cff 编写于 作者: B Bruce Momjian

Use sizeof() for snprintf() buffer length.

上级 5b4fa959
......@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/port/exec.c,v 1.54 2007/01/29 20:17:40 momjian Exp $
* $PostgreSQL: pgsql/src/port/exec.c,v 1.55 2007/01/29 20:22:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -590,7 +590,7 @@ pclose_check(FILE *stream)
{
char str[256];
snprintf(str, 256, "%d: %s", WTERMSIG(exitstatus),
snprintf(str, sizeof(str), "%d: %s", WTERMSIG(exitstatus),
WTERMSIG(exitstatus) < NSIG ?
sys_siglist[WTERMSIG(exitstatus)] : "(unknown)");
log_error(_("child process was terminated by signal %s"), str);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册