Prev: [patch 107/149] atl1e: Allow TX checksum offload and TSO to be disabled and reenabled
Next: [patch 085/149] x86, setup: Phoenix BIOS fixup is needed on Dell Inspiron Mini 1012
From: Greg KH on 1 Jul 2010 14:40 2.6.32-stable review patch. If anyone has any objections, please let us know. ------------------ From: Johan Hovold <jhovold(a)gmail.com> commit b41709f1263bb1ad37efc43fea0bb0b670c12e78 upstream. Fix null-pointer dereference on error path. Signed-off-by: Johan Hovold <jhovold(a)gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh(a)suse.de> diff --git a/drivers/usb/serial/mos7840.c b/drivers/usb/serial/mos7840.c index f8424d1..585b7e6 100644 --- a/drivers/usb/serial/mos7840.c +++ b/drivers/usb/serial/mos7840.c @@ -730,7 +730,6 @@ static void mos7840_bulk_in_callback(struct urb *urb) mos7840_port = urb->context; if (!mos7840_port) { dbg("%s", "NULL mos7840_port pointer"); - mos7840_port->read_urb_busy = false; return; } -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |