Fixed 2 leaks in setup_myself()
This commit is contained in:
parent
b342d0cfb6
commit
6efd3ff302
1 changed files with 3 additions and 0 deletions
|
@ -393,6 +393,7 @@ void load_all_subnets(void) {
|
|||
|
||||
if((s2 = lookup_subnet(n, s))) {
|
||||
s2->expires = -1;
|
||||
free(s);
|
||||
} else {
|
||||
subnet_add(n, s);
|
||||
}
|
||||
|
@ -1000,6 +1001,8 @@ static bool setup_myself(void) {
|
|||
devops = vde_devops;
|
||||
#endif
|
||||
}
|
||||
if (type)
|
||||
free(type);
|
||||
|
||||
get_config_bool(lookup_config(config_tree, "DeviceStandby"), &device_standby);
|
||||
|
||||
|
|
Loading…
Reference in a new issue