Remove unused (and potentially segfaulting) net2str() call.
This commit is contained in:
parent
6363ed4d9c
commit
92c4a28d7d
1 changed files with 5 additions and 3 deletions
|
@ -247,6 +247,11 @@ bool net2str(char *netstr, int len, const subnet_t *subnet)
|
||||||
{
|
{
|
||||||
cp();
|
cp();
|
||||||
|
|
||||||
|
if(!netstr || !subnet) {
|
||||||
|
logger(LOG_ERR, _("net2str() was called with netstr=%p, subnet=%p!\n"), netstr, subnet);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
switch (subnet->type) {
|
switch (subnet->type) {
|
||||||
case SUBNET_MAC:
|
case SUBNET_MAC:
|
||||||
snprintf(netstr, len, "%hx:%hx:%hx:%hx:%hx:%hx",
|
snprintf(netstr, len, "%hx:%hx:%hx:%hx:%hx:%hx",
|
||||||
|
@ -424,9 +429,6 @@ void subnet_update(node_t *owner, subnet_t *subnet, bool up) {
|
||||||
execute_script(name, envp);
|
execute_script(name, envp);
|
||||||
}
|
}
|
||||||
|
|
||||||
net2str(netstr, sizeof netstr, subnet);
|
|
||||||
envp[6] = envp[7] = NULL;
|
|
||||||
|
|
||||||
for(i = 0; i < (owner != myself ? 6 : 4); i++)
|
for(i = 0; i < (owner != myself ? 6 : 4); i++)
|
||||||
free(envp[i]);
|
free(envp[i]);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue