mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
fix invalid free
This commit is contained in:
parent
63e34e62f8
commit
9db9a9a1d3
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ int stats_node_destroy(struct node *n)
|
|||
struct stats_node *s = n->_vd;
|
||||
|
||||
if (s->node_str)
|
||||
free(&s->node_str);
|
||||
free(s->node_str);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue