1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

comment init of node's "stats" shared pointer with nullptr since this causes node_init to crash arbitrarily

This commit is contained in:
Sonja Happ 2019-10-17 10:41:50 +02:00
parent 51527d3403
commit ed10e3d47f

View file

@ -54,7 +54,7 @@ int node_init(struct node *n, struct node_type *vt)
n->_vt = vt;
n->_vd = alloc(vt->size);
n->stats = nullptr;
//n->stats = nullptr;
n->name = nullptr;
n->_name = nullptr;
n->_name_long = nullptr;