diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2008-05-13 18:52:26 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2008-05-13 18:52:26 +0000 |
commit | 325c02deae7a4b920bc0848aec1ea040390cd3c3 (patch) | |
tree | b51eb5c659cdc46cb583e4191ac9c40cc04aa712 /lib | |
parent | d222a43d256da04a7dbe0a08d82ffbcfe7f17893 (diff) |
Don't forget to va_end() the va_list we get from va_copy(). From FreeBSD.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/stdio/vfprintf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c index d4e96dd4ab8..ea0082acb37 100644 --- a/lib/libc/stdio/vfprintf.c +++ b/lib/libc/stdio/vfprintf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfprintf.c,v 1.44 2008/05/05 21:50:45 chl Exp $ */ +/* $OpenBSD: vfprintf.c,v 1.45 2008/05/13 18:52:25 millert Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -813,6 +813,7 @@ number: if ((dprec = prec) >= 0) done: FLUSH(); error: + va_end(orgap); if (__sferror(fp)) ret = -1; goto finish; |