1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-05 12:56:08 +00:00

Initialise variable before use.

Submitted by:	Hans Petter Selasky
This commit is contained in:
Andrew Thompson 2009-11-22 21:19:01 +00:00
parent f12c6c2913
commit 78c94708fb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=199673
5 changed files with 5 additions and 0 deletions

View File

@ -894,6 +894,7 @@ at91dci_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;

View File

@ -797,6 +797,7 @@ atmegadci_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;

View File

@ -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;

View File

@ -1144,6 +1144,7 @@ musbotg_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;

View File

@ -858,6 +858,7 @@ uss820dci_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;