svn commit: r228228 - stable/8/sys/dev/usb/wlan

Hans Petter Selasky hselasky at FreeBSD.org
Sat Dec 3 14:32:11 UTC 2011


Author: hselasky
Date: Sat Dec  3 14:32:10 2011
New Revision: 228228
URL: http://svn.freebsd.org/changeset/base/228228

Log:
  MFC r228195:
  Fix checks for error return from urtw_alloc_rx_data_list() and
  urtw_alloc_tx_data_list().

Modified:
  stable/8/sys/dev/usb/wlan/if_urtw.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)

Modified: stable/8/sys/dev/usb/wlan/if_urtw.c
==============================================================================
--- stable/8/sys/dev/usb/wlan/if_urtw.c	Sat Dec  3 14:29:14 2011	(r228227)
+++ stable/8/sys/dev/usb/wlan/if_urtw.c	Sat Dec  3 14:32:10 2011	(r228228)
@@ -1053,10 +1053,10 @@ urtw_init_locked(void *arg)
 
 	if (!(sc->sc_flags & URTW_INIT_ONCE)) {
 		ret = urtw_alloc_rx_data_list(sc);
-		if (error != 0)
+		if (ret != 0)
 			goto fail;
 		ret = urtw_alloc_tx_data_list(sc);
-		if (error != 0)
+		if (ret != 0)
 			goto fail;
 		sc->sc_flags |= URTW_INIT_ONCE;
 	}


More information about the svn-src-stable-8 mailing list