Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/usb Fix NULL deref. Found by vHCI.



details:   https://anonhg.NetBSD.org/src/rev/19dc4a2f48a2
branches:  trunk
changeset: 459523:19dc4a2f48a2
user:      maxv <maxv%NetBSD.org@localhost>
date:      Sat Sep 14 15:22:31 2019 +0000

description:
Fix NULL deref. Found by vHCI.

diffstat:

 sys/dev/usb/usscanner.c |  8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diffs (29 lines):

diff -r dcd2360681be -r 19dc4a2f48a2 sys/dev/usb/usscanner.c
--- a/sys/dev/usb/usscanner.c   Sat Sep 14 15:21:19 2019 +0000
+++ b/sys/dev/usb/usscanner.c   Sat Sep 14 15:22:31 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: usscanner.c,v 1.44 2019/05/05 03:17:54 mrg Exp $       */
+/*     $NetBSD: usscanner.c,v 1.45 2019/09/14 15:22:31 maxv Exp $      */
 
 /*
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -47,7 +47,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: usscanner.c,v 1.44 2019/05/05 03:17:54 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: usscanner.c,v 1.45 2019/09/14 15:22:31 maxv Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -387,7 +387,9 @@
        else
                rv = 0;
 
-       usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_udev, sc->sc_dev);
+       if (sc->sc_udev != NULL)
+               usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_udev,
+                   sc->sc_dev);
 
        return rv;
 }



Home | Main Index | Thread Index | Old Index