1
0
Fork 0
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:
Steffen Vogel 2017-09-05 10:50:25 +02:00
parent 63e34e62f8
commit 9db9a9a1d3

View file

@ -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;
}