summaryrefslogtreecommitdiff
path: root/src/core/dbus-execute.c
diff options
context:
space:
mode:
authorThomas Hindoe Paaboel Andersen <phomes@gmail.com>2014-02-07 00:01:19 +0100
committerThomas Hindoe Paaboel Andersen <phomes@gmail.com>2014-02-07 00:01:19 +0100
commit1006a62d20855eb7d70b044031a2a676a8111a0f (patch)
tree279e1c1b9f636784b9ade71c0a6533920d5018f6 /src/core/dbus-execute.c
parent627a98d39844a1ac10fde1f72cf18b4f08be4990 (diff)
core: fix warning
introduced in c7040b5d1c2c148f12b6a5eef3dfce1661805131
Diffstat (limited to 'src/core/dbus-execute.c')
-rw-r--r--src/core/dbus-execute.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/dbus-execute.c b/src/core/dbus-execute.c
index d2bbda2db..4236b9808 100644
--- a/src/core/dbus-execute.c
+++ b/src/core/dbus-execute.c
@@ -615,7 +615,7 @@ int bus_exec_context_set_transient_property(
return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid environment block.");
if (mode != UNIT_CHECK) {
- _cleanup_free_ char *joined;
+ _cleanup_free_ char *joined = NULL;
char **e;
e = strv_env_merge(2, c->environment, l);