[Spice-devel] [spice-gtk v2 9/9] usb-redir: use g_thread_try_new instead of g_thread_new

Yuri Benditovich yuri.benditovich at daynix.com
Tue Jul 23 07:27:08 UTC 2019


Newer API (glib 2.32) is safe, in case of error it does not
abort the process and returns error information.

Signed-off-by: Yuri Benditovich <yuri.benditovich at daynix.com>
---
 src/usb-backend.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/usb-backend.c b/src/usb-backend.c
index bbd3b67..272d72a 100644
--- a/src/usb-backend.c
+++ b/src/usb-backend.c
@@ -469,9 +469,9 @@ gboolean spice_usb_backend_register_hotplug(SpiceUsbBackend *be,
     }
 
     g_atomic_int_set(&be->event_thread_run, TRUE);
-    be->event_thread = g_thread_new("usb_ev_thread",
-                                    handle_libusb_events,
-                                    be);
+    be->event_thread = g_thread_try_new("usb_ev_thread",
+                                        handle_libusb_events,
+                                        be, error);
     if (!be->event_thread) {
         g_warning("Error starting event thread");
         spice_usb_backend_deregister_hotplug(be);
-- 
2.17.1



More information about the Spice-devel mailing list