mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
Merged revisions 221776 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r221776 | tilghman | 2009-10-01 18:53:12 -0500 (Thu, 01 Oct 2009) | 2 lines Fix a bunch of off-by-one errors ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@221777 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1218,7 +1218,7 @@ static void *netconsole(void *vconsole)
|
||||
continue;
|
||||
}
|
||||
if (fds[0].revents) {
|
||||
res = read_credentials(con->fd, tmp, sizeof(tmp), con);
|
||||
res = read_credentials(con->fd, tmp, sizeof(tmp) - 1, con);
|
||||
if (res < 1) {
|
||||
break;
|
||||
}
|
||||
@@ -2418,7 +2418,7 @@ static char *cli_complete(EditLine *editline, int ch)
|
||||
if (ast_opt_remote) {
|
||||
snprintf(buf, sizeof(buf), "_COMMAND NUMMATCHES \"%s\" \"%s\"", lf->buffer, ptr);
|
||||
fdsend(ast_consock, buf);
|
||||
res = read(ast_consock, buf, sizeof(buf));
|
||||
res = read(ast_consock, buf, sizeof(buf) - 1);
|
||||
buf[res] = '\0';
|
||||
nummatches = atoi(buf);
|
||||
|
||||
|
Reference in New Issue
Block a user