Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 25a4a77

Browse filesBrowse files
committed
Suppress uninitialized-variable warning.
1 parent 440a330 commit 25a4a77
Copy full SHA for 25a4a77

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Collapse file

‎src/backend/postmaster/syslogger.c‎

Copy file name to clipboardExpand all lines: src/backend/postmaster/syslogger.c
+2-2Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.