Fix assert in test-spawn caused by missing initialization of DBusError instance on gcc builds.

Bug: https://bugs.freedesktop.org/show_bug.cgi?id=95160
Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
This commit is contained in:
Ralf Habacker 2016-04-29 09:47:51 +02:00
parent 072cdf11ab
commit 9323a621e8

View file

@ -16,7 +16,7 @@ main (int argc, char **argv)
{
char **argv_copy;
int i;
DBusError error;
DBusError error = DBUS_ERROR_INIT;
if (argc < 2)
{