mirror of
https://github.com/postgres/postgres.git
synced 2026-06-13 18:50:17 -04:00
Fix silly thinko in ResetSequenceCaches.
Report from Kevin Hale Boyes.
This commit is contained in:
parent
d90ced8bb2
commit
0f1ef79095
1 changed files with 1 additions and 1 deletions
|
|
@ -1615,6 +1615,6 @@ ResetSequenceCaches(void)
|
|||
{
|
||||
next = seqtab->next;
|
||||
free(seqtab);
|
||||
seqtab = seqtab->next;
|
||||
seqtab = next;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue