Open PolynomialDivision opened 2 years ago
In set_default_ifcnfs, we do ifs->cnf = olsr_malloc(sizeof(struct if_config_options),"Set default config");. However, that is not freed in the remove function? https://github.com/OLSR/olsrd/blob/master/src/interfaces.c#L379
ifs->cnf = olsr_malloc(sizeof(struct if_config_options),"Set default config");
@PolynomialDivision , do you mind providing a PR / patch?
In set_default_ifcnfs, we do
ifs->cnf = olsr_malloc(sizeof(struct if_config_options),"Set default config");
. However, that is not freed in the remove function? https://github.com/OLSR/olsrd/blob/master/src/interfaces.c#L379