mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-05 00:37:59 +02:00
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>
(cherry picked from commit 9323a621e8)
This commit is contained in:
parent
ffa99f343d
commit
eaf231b7db
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ main (int argc, char **argv)
|
|||
{
|
||||
char **argv_copy;
|
||||
int i;
|
||||
DBusError error;
|
||||
DBusError error = DBUS_ERROR_INIT;
|
||||
|
||||
if (argc < 2)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue