Module Name:    src
Committed By:   maxv
Date:           Sat Jul 25 08:36:44 UTC 2015

Modified Files:
        src/sys/dev/pci: if_ti.c

Log Message:
Memory leak. Same as r1.93. I don't know why Brainy didn't detect it
earlier; or perhaps I forgot to report it.

Found by Brainy.


To generate a diff of this commit:
cvs rdiff -u -r1.94 -r1.95 src/sys/dev/pci/if_ti.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/pci/if_ti.c
diff -u src/sys/dev/pci/if_ti.c:1.94 src/sys/dev/pci/if_ti.c:1.95
--- src/sys/dev/pci/if_ti.c:1.94	Mon Apr 27 17:41:26 2015
+++ src/sys/dev/pci/if_ti.c	Sat Jul 25 08:36:44 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: if_ti.c,v 1.94 2015/04/27 17:41:26 christos Exp $ */
+/* $NetBSD: if_ti.c,v 1.95 2015/07/25 08:36:44 maxv Exp $ */
 
 /*
  * Copyright (c) 1997, 1998, 1999
@@ -81,7 +81,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_ti.c,v 1.94 2015/04/27 17:41:26 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_ti.c,v 1.95 2015/07/25 08:36:44 maxv Exp $");
 
 #include "opt_inet.h"
 
@@ -800,6 +800,7 @@ ti_newbuf_mini(struct ti_softc *sc, int 
 				BUS_DMA_READ|BUS_DMA_NOWAIT)) != 0) {
 			aprint_error_dev(sc->sc_dev, "can't load recv map, error = %d\n",
 			       error);
+			m_freem(m_new);
 			return (ENOMEM);
 		}
 	} else {

Reply via email to