GNOME Bugzilla – Bug 753735
gdaemonfile: check for the correct cancellable
Last modified: 2015-08-18 06:34:16 UTC
see patch
Created attachment 309426 [details] [review] gdaemonfile: check for the correct cancellable We were checking for the newly created data cancellable, which is wrong. That was causing that mounting encloused volumes were not cancellable at all. Check for the actual GCancellable parameter to fix it.
Review of attachment 309426 [details] [review]: Looks good!
Attachment 309426 [details] pushed as 893ce0b - gdaemonfile: check for the correct cancellable
Review of attachment 309426 [details] [review]: ::: client/gdaemonfile.c @@ +2078,1 @@ data->cancellable = g_object_ref (data->cancellable); I suppose that this line should be also changed: - data->cancellable = g_object_ref (data->cancellable); + data->cancellable = g_object_ref (cancellable); Otherwise there will be segfault as a bonus...
Ah you have fixed this already by commit fccc50e. Sorry for the noise...