From 8e050193e17ed002f7608ba1b1fe3371a8bb182c Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Sun, 15 Dec 2013 20:23:23 -0500 Subject: [PATCH] Fix segv introduced by 2fd069b18e525860514a70d3ea08410ca122d3e2 n->path is pointing to the value now, we set s = NULL above. --- src/libsystemd-bus/bus-objects.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsystemd-bus/bus-objects.c b/src/libsystemd-bus/bus-objects.c index 5aa83a442..54ed7542d 100644 --- a/src/libsystemd-bus/bus-objects.c +++ b/src/libsystemd-bus/bus-objects.c @@ -1379,7 +1379,7 @@ static struct node *bus_node_allocate(sd_bus *bus, const char *path) { n->path = s; s = NULL; /* do not free */ - r = hashmap_put(bus->nodes, s, n); + r = hashmap_put(bus->nodes, n->path, n); if (r < 0) { free(n->path); free(n); -- 2.30.2