solstice

Compute collected power and efficiencies of a solar plant
git clone git://git.meso-star.com/solstice.git
Log | Files | Refs | README | LICENSE

commit ecb7aa7356cacc2644264aaa22ed12934c413599
parent e63c9738b791b37c8fb0f82522d6eb04c4ba0b3f
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Thu,  5 Jan 2017 16:05:36 +0100

Fix a bug on release of an empty node

Diffstat:
Msrc/core/solstice_core_node.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/core/solstice_core_node.c b/src/core/solstice_core_node.c @@ -46,6 +46,7 @@ node_release(ref_T* ref) break; case NODE_TRACKING_TARGET: /* Do nothing */ break; case NODE_PIVOT: /* Do nothing */ break; + case NODE_EMPTY: /* Do nothing */ break; default: FATAL("Unreachable code.\n"); break; } node_ref_put_children(&node->anim);