mirror of
https://github.com/postgres/postgres.git
synced 2025-06-25 01:02:05 +03:00
Fix uninitialized variable.
Report from Andres Freund, but not his fix.
This commit is contained in:
@ -316,7 +316,7 @@ StreamLog(void)
|
||||
int64 message_target = 0;
|
||||
int64 fsync_target = 0;
|
||||
struct timeval timeout;
|
||||
struct timeval *timeoutptr;
|
||||
struct timeval *timeoutptr = NULL;
|
||||
|
||||
FD_ZERO(&input_mask);
|
||||
FD_SET(PQsocket(conn), &input_mask);
|
||||
|
Reference in New Issue
Block a user