diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 4 | ||||
-rw-r--r-- | src/usbmux.c | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -580,7 +580,7 @@ static void *usbmuxd_bulk_reader_thread(void *arg) static void *usbmuxd_client_init_thread(void *arg) { struct client_data *cdata; - struct usbmuxd_scan_request *s_req = NULL; + struct usbmuxd_scan_request *s_req; struct usbmuxd_device_info_record dev_info_rec; struct usbmuxd_connect_request *c_req = NULL; @@ -941,7 +941,7 @@ static void *usbmuxd_client_init_thread(void *arg) cur_dev = NULL; if (device_count > 1) { struct device_info **newlist; - int j; + int j = 0; newlist = (struct device_info **) diff --git a/src/usbmux.c b/src/usbmux.c index dd3ac1a..ed23278 100644 --- a/src/usbmux.c +++ b/src/usbmux.c @@ -428,7 +428,7 @@ int usbmux_get_specific_device(int bus_n, int dev_n, int usbmux_free_device(usbmux_device_t device) { char buf[512]; - int bytes; + int bytes = -1; if (!device) return -EINVAL; |