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:
@ -1615,6 +1615,6 @@ ResetSequenceCaches(void)
|
||||
{
|
||||
next = seqtab->next;
|
||||
free(seqtab);
|
||||
seqtab = seqtab->next;
|
||||
seqtab = next;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user