http://git.etherboot.org
/
people
/
sha0
/
gpxe.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a6f0a09
)
Added missing va_end()
author
Michael Brown
<mcb30@etherboot.org>
Sun, 3 Jun 2007 02:11:25 +0000
(
02:11
+0000)
committer
Michael Brown
<mcb30@etherboot.org>
Sun, 3 Jun 2007 02:11:25 +0000
(
02:11
+0000)
src/core/xfer.c
patch
|
blob
|
history
diff --git
a/src/core/xfer.c
b/src/core/xfer.c
index
2250687
..
ea5fda3
100644
(file)
--- 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 );
}
}