Source-Changes-HG archive

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

[src/netbsd-6]: src/sys/dev/usb Pull up following revision(s) (requested by m...



details:   https://anonhg.NetBSD.org/src/rev/e0363ba1dac3
branches:  netbsd-6
changeset: 777201:e0363ba1dac3
user:      snj <snj%NetBSD.org@localhost>
date:      Sat Aug 12 16:26:31 2017 +0000

description:
Pull up following revision(s) (requested by mrg in ticket #1470):
        sys/dev/usb/if_ural.c: revision 1.52
Free the RX list if ural_alloc_rx_list fails part way through.
Reported by Ilja Van Sprundel.

diffstat:

 sys/dev/usb/if_ural.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r cda525d1fab3 -r e0363ba1dac3 sys/dev/usb/if_ural.c
--- a/sys/dev/usb/if_ural.c     Sat Aug 12 16:23:28 2017 +0000
+++ b/sys/dev/usb/if_ural.c     Sat Aug 12 16:26:31 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_ural.c,v 1.39 2011/12/23 00:51:44 jakllsch Exp $ */
+/*     $NetBSD: if_ural.c,v 1.39.2.1 2017/08/12 16:26:31 snj Exp $ */
 /*     $FreeBSD: /repoman/r/ncvs/src/sys/dev/usb/if_ural.c,v 1.40 2006/06/02 23:14:40 sam Exp $        */
 
 /*-
@@ -24,7 +24,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_ural.c,v 1.39 2011/12/23 00:51:44 jakllsch Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_ural.c,v 1.39.2.1 2017/08/12 16:26:31 snj Exp $");
 
 
 #include <sys/param.h>
@@ -678,7 +678,7 @@
 
        return 0;
 
-fail:  ural_free_tx_list(sc);
+fail:  ural_free_rx_list(sc);
        return error;
 }
 



Home | Main Index | Thread Index | Old Index