diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-01-06 16:48:39 -0500 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2009-01-06 17:43:32 -0500 |
commit | eebad8668d2b56a4b9a269f65513592eb1882b68 (patch) | |
tree | c199df307fc420472f574d4a0582afe7e0490fc9 /bus | |
parent | 6413acafefb307021d91ddaf21c4b0489ebf3bff (diff) | |
download | dbus-eebad8668d2b56a4b9a269f65513592eb1882b68.tar.gz |
Avoid possible use of uninitialized variable
Signed-off-by: Colin Walters <walters@verbum.org>
Diffstat (limited to 'bus')
-rw-r--r-- | bus/activation.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bus/activation.c b/bus/activation.c index 18630958..a273c4ad 100644 --- a/bus/activation.c +++ b/bus/activation.c @@ -679,7 +679,7 @@ populate_environment (BusActivation *activation) DBusString value; int i; char **environment; - dbus_bool_t retval; + dbus_bool_t retval = FALSE; environment = _dbus_get_environment (); |