mirror of
https://github.com/postgres/postgres.git
synced 2025-11-10 17:42:29 +03:00
Silence compiler warning induced by commit de4389712.
Smarter compilers can see that "slot" can't be used uninitialized, but some popular ones cannot. Noted by Jeff Janes.
This commit is contained in:
@@ -254,7 +254,7 @@ logicalrep_worker_launch(Oid dbid, Oid subid, const char *subname, Oid userid,
|
||||
BackgroundWorker bgw;
|
||||
BackgroundWorkerHandle *bgw_handle;
|
||||
int i;
|
||||
int slot;
|
||||
int slot = 0;
|
||||
LogicalRepWorker *worker = NULL;
|
||||
int nsyncworkers;
|
||||
TimestampTz now;
|
||||
|
||||
Reference in New Issue
Block a user