diff options
author | Daniel Mack <zonque@gmail.com> | 2014-08-18 19:55:32 +0200 |
---|---|---|
committer | Daniel Mack <daniel@zonque.org> | 2014-09-08 11:06:45 +0200 |
commit | bb7dd0b04a6e89674100476eed0bbd05c6a4cbd8 (patch) | |
tree | 7d07b57edee71671c18b7bba706072835cd1aec8 /src/core/execute.c | |
parent | 5369c77d2ee864ac0464d4adc0774ee70ba9c4bc (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.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/execute.c b/src/core/execute.c index 0a5914759f..a88e1b1953 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) { |