Hi,

Here's a patch against 2.4.17-pre1 that fixes a small bug in the dabusb
driver.

thanks,
       
greg k-h
        

diff -Nru a/drivers/usb/dabusb.c b/drivers/usb/dabusb.c
--- a/drivers/usb/dabusb.c      Thu Nov 29 22:23:47 2001
+++ b/drivers/usb/dabusb.c      Thu Nov 29 22:23:47 2001
@@ -224,7 +224,7 @@
                        err("kmalloc(sizeof(buff_t))==NULL");
                        goto err;
                }
-               memset (b, sizeof (buff_t), 0);
+               memset (b, 0, sizeof (buff_t));
                b->s = s;
                b->purb = usb_alloc_urb(packets);
                if (!b->purb) {


_______________________________________________
[EMAIL PROTECTED]
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Reply via email to