summaryrefslogtreecommitdiff
path: root/src/core/execute.c
diff options
context:
space:
mode:
authorDaniel Mack <zonque@gmail.com>2014-08-18 19:55:32 +0200
committerDaniel Mack <daniel@zonque.org>2014-09-08 11:06:45 +0200
commitbb7dd0b04a6e89674100476eed0bbd05c6a4cbd8 (patch)
tree7d07b57edee71671c18b7bba706072835cd1aec8 /src/core/execute.c
parent5369c77d2ee864ac0464d4adc0774ee70ba9c4bc (diff)
bus: add kdbus endpoint types
Add types to describe endpoints and associated policy entries, and add a BusEndpoint instace to ExecContext.
Diffstat (limited to 'src/core/execute.c')
-rw-r--r--src/core/execute.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/execute.c b/src/core/execute.c
index 0a5914759..a88e1b195 100644
--- a/src/core/execute.c
+++ b/src/core/execute.c
@@ -1908,6 +1908,9 @@ void exec_context_done(ExecContext *c) {
strv_free(c->runtime_directory);
c->runtime_directory = NULL;
+
+ bus_endpoint_free(c->bus_endpoint);
+ c->bus_endpoint = NULL;
}
int exec_context_destroy_runtime_directory(ExecContext *c, const char *runtime_prefix) {