Avoid possible use of uninitialized variable
authorPeter Breitenlohner <peb@mppmu.mpg.de>
Tue, 6 Jan 2009 21:48:39 +0000 (16:48 -0500)
committerColin Walters <walters@verbum.org>
Tue, 6 Jan 2009 22:43:32 +0000 (17:43 -0500)
Signed-off-by: Colin Walters <walters@verbum.org>
bus/activation.c

index 1863095..a273c4a 100644 (file)
@@ -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 ();