From 370399f9f8cdfe4d5f01b181854af359586655b4 Mon Sep 17 00:00:00 2001 From: "matthias.ringwald" Date: Sat, 11 Jul 2009 10:54:59 +0000 Subject: [PATCH] correct kernel doesn't detach error handling --- src/hci_transport_usb.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/hci_transport_usb.c b/src/hci_transport_usb.c index 968cc2f52..a469de0a2 100644 --- a/src/hci_transport_usb.c +++ b/src/hci_transport_usb.c @@ -163,7 +163,6 @@ static int usb_open(void *transport_config){ r = libusb_detach_kernel_driver (handle, 0); if (r < 0) { fprintf(stderr, "libusb_detach_kernel_driver error %d\n", r); - goto close; usb_close(); return r; }