Commit 0cacb2b7 authored by Jeff Davis's avatar Jeff Davis

Fix missing pfree() in logtape.c, missed by 24d85952.

parent 81e83216
......@@ -660,6 +660,7 @@ LogicalTapeSetClose(LogicalTapeSet *lts)
if (lt->buffer)
pfree(lt->buffer);
}
pfree(lts->tapes);
pfree(lts->freeBlocks);
pfree(lts);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment