1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-06-16 06:15:24 +00:00

Lets put this in the right place.

svn path=/trunk/net/; revision=4889
This commit is contained in:
Karl Heyes 2003-06-06 11:19:50 +00:00
parent 08bf02cf67
commit 4ef26ef74e

View File

@ -354,13 +354,13 @@ int sock_write_fmt(sock_t sock, const char *fmt, va_list ap)
if (buff)
{
len = vsnprintf (buff, len, fmt, ap_retry);
va_end (ap_retry);
if (len > 0)
rc = sock_write_bytes (sock, buff, len);
free (buff);
}
}
}
va_end (ap_retry);
return rc;
}