From f55897af74ac072d3447e5cf513d0f4718b142c7 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Wed, 10 Oct 2007 11:41:57 +0100 Subject: Use DBUS_ERROR_INIT instead of dbus_error_init wherever it's clearly equivalent --- dbus/dbus-spawn.c | 38 ++++++++++---------------------------- 1 file changed, 10 insertions(+), 28 deletions(-) (limited to 'dbus/dbus-spawn.c') diff --git a/dbus/dbus-spawn.c b/dbus/dbus-spawn.c index 810536fd..eaa9ef15 100644 --- a/dbus/dbus-spawn.c +++ b/dbus/dbus-spawn.c @@ -366,11 +366,9 @@ read_data (DBusBabysitter *sitter, { int what; int got; - DBusError error; + DBusError error = DBUS_ERROR_INIT; ReadStatus r; - - dbus_error_init (&error); - + r = read_ints (fd, &what, 1, &got, &error); switch (r) @@ -1238,12 +1236,8 @@ static dbus_bool_t check_spawn_nonexistent (void *data) { char *argv[4] = { NULL, NULL, NULL, NULL }; - DBusBabysitter *sitter; - DBusError error; - - sitter = NULL; - - dbus_error_init (&error); + DBusBabysitter *sitter = NULL; + DBusError error = DBUS_ERROR_INIT; /*** Test launching nonexistent binary */ @@ -1283,12 +1277,8 @@ static dbus_bool_t check_spawn_segfault (void *data) { char *argv[4] = { NULL, NULL, NULL, NULL }; - DBusBabysitter *sitter; - DBusError error; - - sitter = NULL; - - dbus_error_init (&error); + DBusBabysitter *sitter = NULL; + DBusError error = DBUS_ERROR_INIT; /*** Test launching segfault binary */ @@ -1328,12 +1318,8 @@ static dbus_bool_t check_spawn_exit (void *data) { char *argv[4] = { NULL, NULL, NULL, NULL }; - DBusBabysitter *sitter; - DBusError error; - - sitter = NULL; - - dbus_error_init (&error); + DBusBabysitter *sitter = NULL; + DBusError error = DBUS_ERROR_INIT; /*** Test launching exit failure binary */ @@ -1373,12 +1359,8 @@ static dbus_bool_t check_spawn_and_kill (void *data) { char *argv[4] = { NULL, NULL, NULL, NULL }; - DBusBabysitter *sitter; - DBusError error; - - sitter = NULL; - - dbus_error_init (&error); + DBusBabysitter *sitter = NULL; + DBusError error = DBUS_ERROR_INIT; /*** Test launching sleeping binary then killing it */ -- cgit