1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-28 11:55:44 +03:00

bus: zero data structure and catch up with error value change

This commit is contained in:
Kay Sievers 2013-04-14 16:28:34 +02:00
parent 77930f1120
commit 01f6c9d468
2 changed files with 2 additions and 1 deletions

View File

@ -475,6 +475,7 @@ int bus_kernel_create(const char *name, char **s) {
l = strlen(name);
make = alloca(offsetof(struct kdbus_cmd_bus_make, name) + DECIMAL_STR_MAX(uid_t) + 1 + l + 1);
memset(make, 0, offsetof(struct kdbus_cmd_bus_make, name));
sprintf(make->name, "%lu-%s", (unsigned long) getuid(), name);
make->size = offsetof(struct kdbus_cmd_bus_make, name) + strlen(make->name) + 1;
make->flags = KDBUS_ACCESS_WORLD | KDBUS_POLICY_OPEN;

View File

@ -115,7 +115,7 @@ int main(int argc, char *argv[]) {
assert_se(r >= 0);
r = sd_bus_release_name(a, "net.x0pointer.foobar");
assert_se(r == -ENXIO);
assert_se(r == -ESRCH);
sd_bus_unref(a);
sd_bus_unref(b);