Commit ae92a9a3 authored by Tom Lane's avatar Tom Lane

Fix uninitialized variable.

Oversight in a734fd5d.

Michael Paquier
parent a4930e7c
...@@ -1908,7 +1908,7 @@ do_autovacuum(void) ...@@ -1908,7 +1908,7 @@ do_autovacuum(void)
BufferAccessStrategy bstrategy; BufferAccessStrategy bstrategy;
ScanKeyData key; ScanKeyData key;
TupleDesc pg_class_desc; TupleDesc pg_class_desc;
int orphan_failures; int orphan_failures = 0;
int effective_multixact_freeze_max_age; int effective_multixact_freeze_max_age;
/* /*
......
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