diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-04-29 07:56:55 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-04-29 07:59:25 +0530 |
commit | cd4036cb63d19296476e1e91056a6524ade9bbbc (patch) | |
tree | ba1f3424c9e2d7854460ff15622f9410c22e7cca /src/npassd/collection.c | |
parent | da21dd57634aebffe0f5833b598e1128fafc0def (diff) |
c: don't NULL check before free
Diffstat (limited to 'src/npassd/collection.c')
-rw-r--r-- | src/npassd/collection.c | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/src/npassd/collection.c b/src/npassd/collection.c index 48167bf..6fecf16 100644 --- a/src/npassd/collection.c +++ b/src/npassd/collection.c @@ -45,17 +45,12 @@ static void collection_free(struct collection *c) if (c == NULL) return; - if (c->slot != NULL) - sd_bus_slot_unref(c->slot); - if (c->path != NULL) - free(c->path); - if (c->alias != NULL) - free(c->alias); - if (c->label != NULL) - free(c->label); - if (c->root != NULL) - free(c->root); + sd_bus_slot_unref(c->slot); + free(c->path); + free(c->alias); + free(c->label); + free(c->root); free(c); } |