summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosef Karthauser <joe@FreeBSD.org>2002-04-01 13:28:49 +0000
committerJosef Karthauser <joe@FreeBSD.org>2002-04-01 13:28:49 +0000
commit55b7d12d515d8b33af884eaa6dcff8d29393fbb1 (patch)
tree6e0f43cc16ed5242dc729397c27313f3a9ccdc9b
parent3b5338092724a2d71c2c31f91529612f69f69a6c (diff)
Notes
-rw-r--r--sys/dev/usb/ohci.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c
index e63bf5bd5c63..21d8c60edf0e 100644
--- a/sys/dev/usb/ohci.c
+++ b/sys/dev/usb/ohci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ohci.c,v 1.88 2000/04/25 14:28:13 augustss Exp $ */
+/* $NetBSD: ohci.c,v 1.90 2000/05/08 18:28:46 thorpej Exp $ */
/* $FreeBSD$ */
/*
@@ -1860,6 +1860,9 @@ ohci_open(usbd_pipe_handle pipe)
DPRINTFN(1, ("ohci_open: pipe=%p, addr=%d, endpt=%d (%d)\n",
pipe, addr, ed->bEndpointAddress, sc->sc_addr));
+ std = NULL;
+ sed = NULL;
+
if (addr == sc->sc_addr) {
switch (ed->bEndpointAddress) {
case USB_CONTROL_ENDPOINT:
@@ -1939,9 +1942,11 @@ ohci_open(usbd_pipe_handle pipe)
return (USBD_NORMAL_COMPLETION);
bad:
- ohci_free_std(sc, std);
+ if (std != NULL)
+ ohci_free_std(sc, std);
bad1:
- ohci_free_sed(sc, sed);
+ if (sed != NULL)
+ ohci_free_sed(sc, sed);
bad0:
return (USBD_NOMEM);