mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +03:00
Fix missing pfree() in logtape.c, missed by 24d85952
.
This commit is contained in:
@ -660,6 +660,7 @@ LogicalTapeSetClose(LogicalTapeSet *lts)
|
|||||||
if (lt->buffer)
|
if (lt->buffer)
|
||||||
pfree(lt->buffer);
|
pfree(lt->buffer);
|
||||||
}
|
}
|
||||||
|
pfree(lts->tapes);
|
||||||
pfree(lts->freeBlocks);
|
pfree(lts->freeBlocks);
|
||||||
pfree(lts);
|
pfree(lts);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user