mirror of
https://github.com/postgres/postgres.git
synced 2026-02-27 03:40:28 -05:00
Fix missing pfree() in logtape.c, missed by 24d85952.
This commit is contained in:
parent
81e83216d5
commit
0cacb2b79d
1 changed files with 1 additions and 0 deletions
|
|
@ -660,6 +660,7 @@ LogicalTapeSetClose(LogicalTapeSet *lts)
|
|||
if (lt->buffer)
|
||||
pfree(lt->buffer);
|
||||
}
|
||||
pfree(lts->tapes);
|
||||
pfree(lts->freeBlocks);
|
||||
pfree(lts);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue