diff options
author | Michael Brown <mcb30@etherboot.org> | 2007-06-03 02:11:25 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2007-06-03 02:11:25 +0000 |
commit | 6a5cc3533fc3e133db49965184445c954d60eb65 (patch) | |
tree | dbf3abf83fc47d2bbb388f0814745b9506eee8ee /src | |
parent | a6f0a098da98a4274b202300f62c5c4b871b3e92 (diff) | |
download | ipxe-6a5cc3533fc3e133db49965184445c954d60eb65.zip ipxe-6a5cc3533fc3e133db49965184445c954d60eb65.tar.gz ipxe-6a5cc3533fc3e133db49965184445c954d60eb65.tar.bz2 |
Added missing va_end()
Diffstat (limited to 'src')
-rw-r--r-- | src/core/xfer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/xfer.c b/src/core/xfer.c index 2250687..ea5fda3 100644 --- a/src/core/xfer.c +++ b/src/core/xfer.c @@ -240,6 +240,7 @@ int xfer_vprintf ( struct xfer_interface *xfer, const char *format, { char buf[len + 1]; vsnprintf ( buf, sizeof ( buf ), format, args_tmp ); + va_end ( args_tmp ); return xfer_deliver_raw ( xfer, buf, len ); } } |