Skip to content

thunderbolt: fix double free in bolt client

Christian Kellner requested to merge gicmo/gnome-control-center:i318 into master

In the async version of the client creation, i.e. when a new client is created via bolt_client_new_async and an error happens it will be passed to g_task_return_error which takes ownership of it but the very same error will also be free'd via g_autoptr; remove the latter.

Fixes #318 (closed)

Merge request reports