Proper initialization of subnet
This commit is contained in:
parent
7ed725888b
commit
c17cb1a0f2
1 changed files with 3 additions and 2 deletions
|
@ -197,7 +197,8 @@ bool get_config_address(const config_t *cfg, struct addrinfo **result) {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool get_config_subnet(const config_t *cfg, subnet_t ** result) {
|
bool get_config_subnet(const config_t *cfg, subnet_t ** result) {
|
||||||
subnet_t subnet = {NULL};
|
subnet_t subnet;
|
||||||
|
memset(&subnet, 0x0, sizeof(subnet_t));
|
||||||
|
|
||||||
if(!cfg)
|
if(!cfg)
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue