Commit a3b30d4c authored by Robert Haas's avatar Robert Haas

Fix uninitialized variable.

Report from Andres Freund, but not his fix.
parent 40dae7ec
...@@ -316,7 +316,7 @@ StreamLog(void) ...@@ -316,7 +316,7 @@ StreamLog(void)
int64 message_target = 0; int64 message_target = 0;
int64 fsync_target = 0; int64 fsync_target = 0;
struct timeval timeout; struct timeval timeout;
struct timeval *timeoutptr; struct timeval *timeoutptr = NULL;
FD_ZERO(&input_mask); FD_ZERO(&input_mask);
FD_SET(PQsocket(conn), &input_mask); FD_SET(PQsocket(conn), &input_mask);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment