diff options
author | Ian Moffett <ian@osmora.org> | 2025-04-08 21:33:09 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-04-08 21:33:09 -0400 |
commit | 588e73cc98441cbf2700589a8c5c0fa74dd98b6a (patch) | |
tree | ed510b9a958fb2aa6fe3a9af0b44ee309e96362e | |
parent | 0f423d331a60f5740fce185cc65f04e526b33222 (diff) |
file: Fix double free
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | src/file.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -79,7 +79,6 @@ void ldo_close(struct ldo_file *lfp) { close(lfp->fd); - free(lfp); ldo_free(lfp->data); free(lfp); } |