mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-03-07 19:47:50 +08:00
Fix uninitialized variable.
Report from Andres Freund, but not his fix.
This commit is contained in:
parent
40dae7ec53
commit
a3b30d4cfe
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user