Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 25a4a77

Browse files
committed
Suppress uninitialized-variable warning.
1 parent 440a330 commit 25a4a77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/postmaster/syslogger.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*
1919
*
2020
* IDENTIFICATION
21-
* $PostgreSQL: pgsql/src/backend/postmaster/syslogger.c,v 1.37 2007/08/19 01:41:24 adunstan Exp $
21+
* $PostgreSQL: pgsql/src/backend/postmaster/syslogger.c,v 1.38 2007/08/21 01:47:19 tgl Exp $
2222
*
2323
*-------------------------------------------------------------------------
2424
*/
@@ -1007,7 +1007,7 @@ static void
10071007
logfile_rotate(bool time_based_rotation, int size_rotation_for)
10081008
{
10091009
char *filename;
1010-
char *csvfilename;
1010+
char *csvfilename = NULL;
10111011
FILE *fh;
10121012

10131013
rotation_requested = false;

0 commit comments

Comments
 (0)