Explorar el Código

Added missing va_end()

tags/v0.9.3
Michael Brown hace 17 años
padre
commit
6a5cc3533f
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1
    0
      src/core/xfer.c

+ 1
- 0
src/core/xfer.c Ver fichero

@@ -240,6 +240,7 @@ int xfer_vprintf ( struct xfer_interface *xfer, const char *format,
240 240
 	{
241 241
 		char buf[len + 1];
242 242
 		vsnprintf ( buf, sizeof ( buf ), format, args_tmp );
243
+		va_end ( args_tmp );
243 244
 		return xfer_deliver_raw ( xfer, buf, len );
244 245
 	}
245 246
 }

Loading…
Cancelar
Guardar