svn commit: r310077 - stable/11/sys/dev/firewire

Andriy Gapon avg at FreeBSD.org
Wed Dec 14 16:43:05 UTC 2016


Author: avg
Date: Wed Dec 14 16:43:04 2016
New Revision: 310077
URL: https://svnweb.freebsd.org/changeset/base/310077

Log:
  MFC r309093: firewire: initialize tag label to -1 in fw_xfer_alloc()

Modified:
  stable/11/sys/dev/firewire/firewire.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/firewire/firewire.c
==============================================================================
--- stable/11/sys/dev/firewire/firewire.c	Wed Dec 14 16:35:17 2016	(r310076)
+++ stable/11/sys/dev/firewire/firewire.c	Wed Dec 14 16:43:04 2016	(r310077)
@@ -1098,6 +1098,7 @@ fw_xfer_alloc(struct malloc_type *type)
 		return xfer;
 
 	xfer->malloc = type;
+	xfer->tl = -1;
 
 	return xfer;
 }


More information about the svn-src-all mailing list