]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 302504 via svnmerge from
authorSean Bright <sean@malleable.com>
Wed, 19 Jan 2011 17:58:11 +0000 (17:58 +0000)
committerSean Bright <sean@malleable.com>
Wed, 19 Jan 2011 17:58:11 +0000 (17:58 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r302504 | seanbright | 2011-01-19 12:56:32 -0500 (Wed, 19 Jan 2011) | 7 lines

  Make sure that h_length is set when we short-circuit out of ast_gethostbyname.

  (closes issue #16135)
  Reported by: thedavidfactor
  Patches:
        utils.patch uploaded by thedavidfactor (license 903)
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@302505 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/utils.c

index 687a6ec4201f66461d79354218458b1bb84a54cf..2f7086a0df43e28830eb95d0b37ae8578ba3ae65 100644 (file)
@@ -208,6 +208,8 @@ struct hostent *ast_gethostbyname(const char *host, struct ast_hostent *hp)
                hp->hp.h_addrtype = AF_INET;
                hp->hp.h_addr_list = (void *) hp->buf;
                hp->hp.h_addr = hp->buf + sizeof(void *);
+               /* For AF_INET, this will always be 4 */
+               hp->hp.h_length = 4;
                if (inet_pton(AF_INET, host, hp->hp.h_addr) > 0)
                        return &hp->hp;
                return NULL;