summaryrefslogtreecommitdiff
path: root/srv.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-07-14 07:44:19 +0000
committerMark Spencer <markster@digium.com>2004-07-14 07:44:19 +0000
commit8ed49644a643c17b2a85ea8fe082fc45eabbd197 (patch)
tree8c674c26fc4a65f5fb0b8a2719e3e95929336928 /srv.c
parent872685d0885ae3564660178706845faf43aaca64 (diff)
Remaining rgagnon source audit improvements (bug #2011)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3430 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'srv.c')
-rwxr-xr-xsrv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/srv.c b/srv.c
index 3d7030737..63118685e 100755
--- a/srv.c
+++ b/srv.c
@@ -60,7 +60,7 @@ static int parse_srv(unsigned char *host, int hostlen, int *portno, unsigned cha
if (res && strcmp(repl, ".")) {
ast_verbose( VERBOSE_PREFIX_3 "parse_srv: SRV mapped to host %s, port %d\n", repl, ntohs(srv->portnum));
if (host) {
- strncpy(host, repl, hostlen - 2);
+ strncpy(host, repl, hostlen - 1);
host[hostlen-1] = '\0';
}
if (portno)
@@ -109,7 +109,7 @@ int ast_get_srv(struct ast_channel *chan, char *host, int hostlen, int *port, co
ret |= ast_autoservice_stop(chan);
if (ret <= 0) {
- strcpy(host, "");
+ host[0] = '\0';
*port = -1;
return ret;
}