svn commit: r226390 - stable/8/sys/dev/ppbus
Christian Brueffer
brueffer at FreeBSD.org
Sat Oct 15 12:53:16 UTC 2011
Author: brueffer
Date: Sat Oct 15 12:53:16 2011
New Revision: 226390
URL: http://svn.freebsd.org/changeset/base/226390
Log:
MFC: r226116
Add missing va_end() to clean up after va_start().
Modified:
stable/8/sys/dev/ppbus/ppb_msq.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/ppbus/ppb_msq.c
==============================================================================
--- stable/8/sys/dev/ppbus/ppb_msq.c Sat Oct 15 12:35:58 2011 (r226389)
+++ stable/8/sys/dev/ppbus/ppb_msq.c Sat Oct 15 12:53:16 2011 (r226390)
@@ -244,6 +244,7 @@ ppb_MS_init_msq(struct ppb_microseq *msq
}
}
+ va_end(p_list);
return (0);
}
More information about the svn-src-stable-8
mailing list