gdbusauth: fix error leak

local_error is leaked in the G_IO_ERROR_NOT_SUPPORTED case. Found by
Coverity.
This commit is contained in:
Michael Catanzaro 2021-03-31 14:12:39 -05:00
parent 65b4bc30eb
commit 2b29495bcb

View File

@ -1007,6 +1007,7 @@ _g_dbus_auth_run_server (GDBusAuth *auth,
g_propagate_error (error, local_error);
goto out;
}
g_clear_error (&local_error);
}
else
{