From 9a66df47b0468aeac8dcd975e5991581627357b3 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Mon, 3 Aug 2009 19:20:07 +0200 Subject: Fix build warnings usbmux.c: In function ‘usbmux_free_device’: usbmux.c:412: warning: ‘bytes’ may be used uninitialized in this function main.c: In function ‘usbmuxd_client_init_thread’: main.c:197: warning: dereferencing pointer ‘s_req.55’ does break strict-aliasing rules main.c:613: note: initialized from here main.c:944: warning: ‘j’ may be used uninitialized in this function Signed-off-by: Nikias Bassen --- src/usbmux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/usbmux.c') 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; -- cgit v1.1-32-gdbae