Added missing va_end()

pull/1/head
Michael Brown 2007-06-03 02:11:25 +00:00
parent a6f0a098da
commit 6a5cc3533f
1 changed files with 1 additions and 0 deletions

View File

@ -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 );
}
}