Skip to content

Commit ae92a9a

Browse files
committed
Fix uninitialized variable.
Oversight in a734fd5. Michael Paquier
1 parent a4930e7 commit ae92a9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/postmaster/autovacuum.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1908,7 +1908,7 @@ do_autovacuum(void)
19081908
BufferAccessStrategy bstrategy;
19091909
ScanKeyData key;
19101910
TupleDesc pg_class_desc;
1911-
int orphan_failures;
1911+
int orphan_failures = 0;
19121912
int effective_multixact_freeze_max_age;
19131913

19141914
/*

0 commit comments

Comments
 (0)