We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de635e1 commit cae8b90Copy full SHA for cae8b90
src/backend/postmaster/postmaster.c
@@ -10,7 +10,7 @@
10
*
11
12
* IDENTIFICATION
13
- * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.3.2.1 1996/08/26 20:35:29 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.3.2.2 1996/10/02 21:36:32 scrappy Exp $
14
15
* NOTES
16
@@ -1004,7 +1004,7 @@ DoExec(StartupInfo *packet, int portFd)
1004
(void) strncpy(argbuf, packet->options, ARGV_SIZE);
1005
argbuf[ARGV_SIZE] = '\0';
1006
(void) strncat(argbuf, ExtraOptions, ARGV_SIZE);
1007
- argbuf[(2 * ARGV_SIZE) + 1] = '\0';
+ argbuf[(2 * ARGV_SIZE)] = '\0';
1008
split_opts(av, &ac, argbuf);
1009
1010
if (packet->database[0])
0 commit comments