summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2023-04-01 13:36:51 +0200
committerSerge Hallyn <serge@hallyn.com>2023-04-26 17:52:54 -0500
commita8dd8ce6c9a5f6e69ed4e9fa7b0c0976bb4ba332 (patch)
tree26dad008f623614a83095c34c1a3c34547a120a0
parent4e1f674c41724dd96ad2c3a0c02ac9f6666697ba (diff)
commonio: free removed database entries
Free the actual struct of the removed entry. Example userdel report: Direct leak of 40 byte(s) in 1 object(s) allocated from: #0 0x55b230efe857 in reallocarray (./src/userdel+0xda857) #1 0x55b230f6041f in mallocarray ./lib/./alloc.h:97:9 #2 0x55b230f6041f in commonio_open ./lib/commonio.c:563:7 #3 0x55b230f39098 in open_files ./src/userdel.c:555:6 #4 0x55b230f39098 in main ./src/userdel.c:1189:2 #5 0x7f9b48c64189 in __libc_start_call_main csu/../sysdeps/nptl/libc_start_call_main.h:58:16
-rw-r--r--lib/commonio.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/commonio.c b/lib/commonio.c
index 40e62298..a0449c83 100644
--- a/lib/commonio.c
+++ b/lib/commonio.c
@@ -1060,6 +1060,8 @@ int commonio_remove (struct commonio_db *db, const char *name)
db->ops->free (p->eptr);
}
+ free(p);
+
return 1;
}