Skip to content

Commit bdb72d8

Browse files
committed
Suppress compiler warning in MULTIBYTE case.
1 parent c78e195 commit bdb72d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/commands/copy.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.129 2001/01/14 05:08:15 tgl Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.130 2001/01/19 06:54:57 tgl Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -1161,7 +1161,6 @@ CopyAttributeOut(FILE *fp, char *server_string, char *delim)
11611161
char *string_start;
11621162
int mblen;
11631163
int i;
1164-
11651164
#endif
11661165

11671166
#ifdef MULTIBYTE
@@ -1174,6 +1173,7 @@ CopyAttributeOut(FILE *fp, char *server_string, char *delim)
11741173
else
11751174
{
11761175
string = server_string;
1176+
string_start = NULL; /* unused, but keep compiler quiet */
11771177
}
11781178
#else
11791179
string = server_string;

0 commit comments

Comments
 (0)