Skip to content
Snippets Groups Projects
Commit cb9d518b authored by Mark Spencer's avatar Mark Spencer
Browse files

Record read size

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5177 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 31bc43c4
No related branches found
No related tags found
No related merge requests found
......@@ -2623,6 +2623,7 @@ static int get_input(struct skinnysession *s)
dlen = *(int *)s->inbuf;
if (dlen+8 > sizeof(s->inbuf))
dlen = sizeof(s->inbuf) - 8;
*(int *)s->inbuf = dlen;
res = read(s->fd, s->inbuf+4, dlen+4);
ast_mutex_unlock(&s->lock);
if (res != (dlen+4)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment