diff options
author | thompsa <thompsa@FreeBSD.org> | 2009-11-22 21:19:01 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2009-11-22 21:19:01 +0000 |
commit | 842fc84bcb787cf259b61a44cd3c4771485650f4 (patch) | |
tree | 64247fad824b4b1f7f96da3a43c2967412088cdd /sys/dev/usb/controller/avr32dci.c | |
parent | 87194982c0d82d711579a618a553c5d555599700 (diff) | |
download | FreeBSD-src-842fc84bcb787cf259b61a44cd3c4771485650f4.zip FreeBSD-src-842fc84bcb787cf259b61a44cd3c4771485650f4.tar.gz |
Initialise variable before use.
Submitted by: Hans Petter Selasky
Diffstat (limited to 'sys/dev/usb/controller/avr32dci.c')
-rw-r--r-- | sys/dev/usb/controller/avr32dci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/usb/controller/avr32dci.c b/sys/dev/usb/controller/avr32dci.c index f251f91..36980ad 100644 --- a/sys/dev/usb/controller/avr32dci.c +++ b/sys/dev/usb/controller/avr32dci.c @@ -767,6 +767,7 @@ avr32dci_setup_standard_chain(struct usb_xfer *xfer) /* setup temp */ + temp.pc = NULL; temp.td = NULL; temp.td_next = xfer->td_start[0]; temp.offset = 0; |