tree-wide: use _cleanup_set_free_ where appropriate

If we already have the helper defined, let's use it instead of open-coding.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek
2020-04-29 14:53:26 +02:00
parent 2f063186d5
commit e57ac1b017
2 changed files with 2 additions and 2 deletions

View File

@@ -1724,7 +1724,7 @@ int bus_unit_queue_job(
_cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
_cleanup_free_ char *job_path = NULL, *unit_path = NULL;
_cleanup_(set_freep) Set *affected = NULL;
_cleanup_set_free_ Set *affected = NULL;
Iterator i;
Job *j, *a;
int r;

View File

@@ -60,7 +60,7 @@ DEFINE_PRIVATE_HASH_OPS(test_hash_ops, struct test, test_hash, test_compare);
static void test_struct(void) {
_cleanup_(prioq_freep) Prioq *q = NULL;
_cleanup_(set_freep) Set *s = NULL;
_cleanup_set_free_ Set *s = NULL;
unsigned previous = 0, i;
struct test *t;