Module Name: src
Committed By: dholland
Date: Sun Feb 14 18:04:47 UTC 2016
Modified Files:
src/sys/arch/emips/stand/common: printf.c
Log Message:
Add missing va_end(). PR 50794 from David Binderman.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/emips/stand/common/printf.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/arch/emips/stand/common/printf.c
diff -u src/sys/arch/emips/stand/common/printf.c:1.5 src/sys/arch/emips/stand/common/printf.c:1.6
--- src/sys/arch/emips/stand/common/printf.c:1.5 Mon Feb 24 07:41:15 2014
+++ src/sys/arch/emips/stand/common/printf.c Sun Feb 14 18:04:47 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: printf.c,v 1.5 2014/02/24 07:41:15 martin Exp $ */
+/* $NetBSD: printf.c,v 1.6 2016/02/14 18:04:47 dholland Exp $ */
/*-
* Copyright (c) 1998 Robert Nordier
* All rights reserved.
@@ -74,6 +74,7 @@ printf(const char *fmt,...)
while (u >>= 4);
goto dumpbuf;
case 0:
+ va_end(ap);
return;
}
}