X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fbus-proxyd%2Ftest-bus-policy.c;h=7bcebef905cc73ca5f3c22cd00512de6f3e7b1be;hp=900e4d2b067e3d4bde308c4639d4603dc2afbe62;hb=5e90b6a978d15efedc5b5cc4a3d2d922a0ecd2a9;hpb=e931d3f4241231e4102eda06adaf7cbfd68c6a5d diff --git a/src/bus-proxyd/test-bus-policy.c b/src/bus-proxyd/test-bus-policy.c index 900e4d2b0..7bcebef90 100644 --- a/src/bus-proxyd/test-bus-policy.c +++ b/src/bus-proxyd/test-bus-policy.c @@ -46,18 +46,17 @@ static int test_policy_load(Policy *p, const char *name) { - char *path; + _cleanup_free_ char *path = NULL; int r = 0; path = strjoin(TEST_DIR, "/bus-policy/", name, NULL); + assert_se(path); if (access(path, R_OK) == 0) policy_load(p, STRV_MAKE(path)); else r = -ENOENT; - free(path); - return r; }