1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-03 20:02:46 +03:00

Fix silly thinko in ResetSequenceCaches.

Report from Kevin Hale Boyes.
This commit is contained in:
Robert Haas
2013-10-03 20:17:51 -04:00
parent d90ced8bb2
commit 0f1ef79095

View File

@ -1615,6 +1615,6 @@ ResetSequenceCaches(void)
{
next = seqtab->next;
free(seqtab);
seqtab = seqtab->next;
seqtab = next;
}
}