Fixed 2 leaks in setup_myself()

This commit is contained in:
thorkill 2015-07-04 00:29:36 +02:00
parent 0267aef826
commit 1140ca6d30

View file

@ -364,6 +364,7 @@ void load_all_subnets(void) {
if((s2 = lookup_subnet(n, s))) {
s2->expires = -1;
free(s);
} else {
subnet_add(n, s);
}
@ -962,6 +963,8 @@ static bool setup_myself(void) {
devops = vde_devops;
#endif
}
if (type)
free(type);
get_config_bool(lookup_config(config_tree, "DeviceStandby"), &device_standby);