Submitted by: Lidong Zhou <ldzhou@cs.cornell.edu>
This commit is contained in:
parent
fd52057729
commit
690233bccc
1 changed files with 2 additions and 2 deletions
|
@ -282,12 +282,12 @@ static struct hostent *ghbn_dup(struct hostent *a)
|
|||
|
||||
j=strlen(a->h_name)+1;
|
||||
if ((ret->h_name=Malloc(j)) == NULL) goto err;
|
||||
memcpy((char *)ret->h_name,a->h_name,j+1);
|
||||
memcpy((char *)ret->h_name,a->h_name,j);
|
||||
for (i=0; a->h_aliases[i] != NULL; i++)
|
||||
{
|
||||
j=strlen(a->h_aliases[i])+1;
|
||||
if ((ret->h_aliases[i]=Malloc(j)) == NULL) goto err;
|
||||
memcpy(ret->h_aliases[i],a->h_aliases[i],j+1);
|
||||
memcpy(ret->h_aliases[i],a->h_aliases[i],j);
|
||||
}
|
||||
ret->h_length=a->h_length;
|
||||
ret->h_addrtype=a->h_addrtype;
|
||||
|
|
Loading…
Reference in a new issue