Small correction to va_start/va_end in cli_printf (va_end was missing).
(Andreas)
This commit is contained in:
parent
5f2a6a9ff3
commit
277a34eff1
1 changed files with 2 additions and 1 deletions
|
@ -110,7 +110,6 @@ cli_printf(cli *c, int code, char *msg, ...)
|
||||||
int cd = code;
|
int cd = code;
|
||||||
int size, cnt;
|
int size, cnt;
|
||||||
|
|
||||||
va_start(args, msg);
|
|
||||||
if (cd < 0)
|
if (cd < 0)
|
||||||
{
|
{
|
||||||
cd = -cd;
|
cd = -cd;
|
||||||
|
@ -122,7 +121,9 @@ cli_printf(cli *c, int code, char *msg, ...)
|
||||||
else
|
else
|
||||||
size = bsprintf(buf, "%04d ", cd);
|
size = bsprintf(buf, "%04d ", cd);
|
||||||
c->last_reply = cd;
|
c->last_reply = cd;
|
||||||
|
va_start(args, msg);
|
||||||
cnt = bvsnprintf(buf+size, sizeof(buf)-size-1, msg, args);
|
cnt = bvsnprintf(buf+size, sizeof(buf)-size-1, msg, args);
|
||||||
|
va_end(args);
|
||||||
if (cnt < 0)
|
if (cnt < 0)
|
||||||
{
|
{
|
||||||
cli_printf(c, code < 0 ? -8000 : 8000, "<line overflow>");
|
cli_printf(c, code < 0 ? -8000 : 8000, "<line overflow>");
|
||||||
|
|
Loading…
Reference in a new issue