Fix crash on invalid domain
This commit is contained in:
parent
a957ce2aa0
commit
1c36ea979f
|
@ -12,23 +12,27 @@
|
|||
|
||||
|
||||
void domain_resolution(void) {
|
||||
struct in_addr addr;
|
||||
char *host_name;
|
||||
struct hostent *remoteHost;
|
||||
char* domainname = "";
|
||||
host_name = configJoinIp;
|
||||
if (host_name == NULL) {
|
||||
return;
|
||||
}
|
||||
int i = 0;
|
||||
remoteHost = gethostbyname(host_name);
|
||||
i = 0;
|
||||
if (remoteHost->h_addrtype == AF_INET) {
|
||||
struct in_addr addr;
|
||||
char *host_name = configJoinIp;
|
||||
struct hostent *remoteHost;
|
||||
char* domainname = "";
|
||||
host_name = configJoinIp;
|
||||
|
||||
while (remoteHost->h_addr_list[i] != 0) {
|
||||
addr.s_addr = *(u_long *) remoteHost->h_addr_list[i++];
|
||||
domainname = inet_ntoa(addr);
|
||||
snprintf(configJoinIp, MAX_CONFIG_STRING, "%s", domainname);
|
||||
if (host_name == NULL) {
|
||||
return;
|
||||
}
|
||||
|
||||
int i = 0;
|
||||
remoteHost = gethostbyname(host_name);
|
||||
if (remoteHost == NULL) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (remoteHost->h_addrtype == AF_INET) {
|
||||
while (remoteHost->h_addr_list[i] != 0) {
|
||||
addr.s_addr = *(u_long *) remoteHost->h_addr_list[i++];
|
||||
domainname = inet_ntoa(addr);
|
||||
snprintf(configJoinIp, MAX_CONFIG_STRING, "%s", domainname);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue