git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13124 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2009-04-22 22:19:12 +00:00
parent 17aca10ec6
commit 775a987490
1 changed files with 3 additions and 2 deletions

View File

@ -516,9 +516,10 @@ iks_recv (iksparser *prs, int timeout)
#endif
{
len = data->trans->recv (data->sock, data->buf, NET_IO_BUF_SIZE - 1, timeout);
if (len == 0) len = -1;
}
if (len <= 0) return IKS_NET_RWERR;
if (len < 0) return IKS_NET_RWERR;
if (len == 0) break;
data->buf[len] = '\0';
if (data->logHook) data->logHook (data->user_data, data->buf, len, 1);
ret = iks_parse (prs, data->buf, len, 0);