summaryrefslogtreecommitdiffstats
path: root/src/core/xfer.c
diff options
context:
space:
mode:
authorMichael Brown2007-06-03 04:11:25 +0200
committerMichael Brown2007-06-03 04:11:25 +0200
commit6a5cc3533fc3e133db49965184445c954d60eb65 (patch)
treedbf3abf83fc47d2bbb388f0814745b9506eee8ee /src/core/xfer.c
parentAdd facility for resolving base+relative URIs (and paths). (diff)
downloadipxe-6a5cc3533fc3e133db49965184445c954d60eb65.tar.gz
ipxe-6a5cc3533fc3e133db49965184445c954d60eb65.tar.xz
ipxe-6a5cc3533fc3e133db49965184445c954d60eb65.zip
Added missing va_end()
Diffstat (limited to 'src/core/xfer.c')
-rw-r--r--src/core/xfer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/xfer.c b/src/core/xfer.c
index 2250687e..ea5fda3d 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 );
}
}