Use snprintf instead of sprintf in pg_regress.

To avoid static analyzers sounding the alarm, move to using snprintf
instead of sprintf. This was an oversight in 66d6086cbc.

Reported-by: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://postgr.es/m/849588.1698179694@sss.pgh.pa.us
This commit is contained in:
Daniel Gustafsson 2023-10-25 10:53:11 +02:00
parent 673a17e312
commit 8f0fd47fa3
1 changed files with 2 additions and 2 deletions

View File

@ -845,7 +845,7 @@ initialize_environment(void)
{
char s[16];
sprintf(s, "%d", port);
snprintf(s, sizeof(s), "%d", port);
setenv("PGPORT", s, 1);
}
}
@ -867,7 +867,7 @@ initialize_environment(void)
{
char s[16];
sprintf(s, "%d", port);
snprintf(s, sizeof(s), "%d", port);
setenv("PGPORT", s, 1);
}
if (user != NULL)