mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-18 18:44:06 +08:00
Fix off-by-1 bug in pg_ctl in -D handling, per report from pjmodos@parba.cz
This commit is contained in:
parent
29a26b25ba
commit
b3f3092cad
@ -4,7 +4,7 @@
|
||||
*
|
||||
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
|
||||
*
|
||||
* $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.48 2004/11/27 18:51:05 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.49 2004/12/06 01:09:20 neilc Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -1289,10 +1289,10 @@ main(int argc, char **argv)
|
||||
{
|
||||
case 'D':
|
||||
{
|
||||
char *pgdata_D = xmalloc(strlen(optarg));
|
||||
char *pgdata_D;
|
||||
char *env_var = xmalloc(strlen(optarg) + 8);
|
||||
|
||||
strcpy(pgdata_D, optarg);
|
||||
pgdata_D = xstrdup(optarg);
|
||||
canonicalize_path(pgdata_D);
|
||||
snprintf(env_var, strlen(optarg) + 8, "PGDATA=%s",
|
||||
pgdata_D);
|
||||
|
Loading…
Reference in New Issue
Block a user