svn commit: r310078 - stable/10/sys/dev/firewire
Andriy Gapon
avg at FreeBSD.org
Wed Dec 14 16:43:10 UTC 2016
Author: avg
Date: Wed Dec 14 16:43:09 2016
New Revision: 310078
URL: https://svnweb.freebsd.org/changeset/base/310078
Log:
MFC r309093: firewire: initialize tag label to -1 in fw_xfer_alloc()
Modified:
stable/10/sys/dev/firewire/firewire.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/dev/firewire/firewire.c
==============================================================================
--- stable/10/sys/dev/firewire/firewire.c Wed Dec 14 16:43:04 2016 (r310077)
+++ stable/10/sys/dev/firewire/firewire.c Wed Dec 14 16:43:09 2016 (r310078)
@@ -1126,6 +1126,7 @@ fw_xfer_alloc(struct malloc_type *type)
return xfer;
xfer->malloc = type;
+ xfer->tl = -1;
return xfer;
}
More information about the svn-src-stable
mailing list