From: Colin Walters Date: Mon, 16 Dec 2013 01:23:23 +0000 (-0500) Subject: Fix segv introduced by 2fd069b18e525860514a70d3ea08410ca122d3e2 X-Git-Tag: v209~914 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=8e050193e17ed002f7608ba1b1fe3371a8bb182c;p=elogind.git Fix segv introduced by 2fd069b18e525860514a70d3ea08410ca122d3e2 n->path is pointing to the value now, we set s = NULL above. --- 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);