mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-02 20:08:03 +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>
This commit is contained in:
parent
072cdf11ab
commit
9323a621e8
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