mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-01 19:43:03 +00:00
Fix possible error on stringification of IPv4-mapped addrs
The FreeBSD netsock2 test has been failing for a while. We were pasing sa->len to getnameinfo instead of sa_tmp->len. ASTERISK-18289 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@332559 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -85,7 +85,7 @@ char *ast_sockaddr_stringify_fmt(const struct ast_sockaddr *sa, int format)
|
|||||||
sa_tmp = sa;
|
sa_tmp = sa;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((e = getnameinfo((struct sockaddr *)&sa_tmp->ss, sa->len,
|
if ((e = getnameinfo((struct sockaddr *)&sa_tmp->ss, sa_tmp->len,
|
||||||
format & AST_SOCKADDR_STR_ADDR ? host : NULL,
|
format & AST_SOCKADDR_STR_ADDR ? host : NULL,
|
||||||
format & AST_SOCKADDR_STR_ADDR ? sizeof(host) : 0,
|
format & AST_SOCKADDR_STR_ADDR ? sizeof(host) : 0,
|
||||||
format & AST_SOCKADDR_STR_PORT ? port : 0,
|
format & AST_SOCKADDR_STR_PORT ? port : 0,
|
||||||
|
|||||||
Reference in New Issue
Block a user