Avoid possible use of uninitialized variable

Signed-off-by: Colin Walters <walters@verbum.org>
This commit is contained in:
Peter Breitenlohner 2009-01-06 16:48:39 -05:00 committed by Colin Walters
parent 6413acafef
commit eebad8668d

View 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 ();