Commit 0f1ef790 authored by Robert Haas's avatar Robert Haas

Fix silly thinko in ResetSequenceCaches.

Report from Kevin Hale Boyes.
parent d90ced8b
......@@ -1615,6 +1615,6 @@ ResetSequenceCaches(void)
{
next = seqtab->next;
free(seqtab);
seqtab = seqtab->next;
seqtab = next;
}
}
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