mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
Fix silly thinko in ResetSequenceCaches.
Report from Kevin Hale Boyes.
This commit is contained in:
parent
d90ced8bb2
commit
0f1ef79095
@ -1615,6 +1615,6 @@ ResetSequenceCaches(void)
|
||||
{
|
||||
next = seqtab->next;
|
||||
free(seqtab);
|
||||
seqtab = seqtab->next;
|
||||
seqtab = next;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user