commit 9835fa482664cf73a916832bd26c98241a3d1b09
parent 8ffcfb95673ed4393fb3ab03a11c57c2be763d73
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date: Mon, 5 Nov 2018 13:45:27 +0100
Merge branch 'release_0.2.1'
Diffstat:
3 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
@@ -35,6 +35,10 @@ variable the install directories of its dependencies.
Release notes
-------------
+### Version 0.2.1
+
+- BugFix: needed data cleaning on computation canceling.
+
### Version 0.2
- Add the support of enclosures with multiple media.
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -47,7 +47,7 @@ endif()
################################################################################
set(VERSION_MAJOR 0)
set(VERSION_MINOR 2)
-set(VERSION_PATCH 0)
+set(VERSION_PATCH 1)
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
set(SENC2D_FILES_SRC
diff --git a/src/senc2d_scene_analyze.c b/src/senc2d_scene_analyze.c
@@ -320,6 +320,7 @@ extract_connex_components
* component is to be processed by another thread (possibly the one
* associated with neighbour's medium). */
component_canceled = 1;
+ darray_side_id_clear(&stack);
goto canceled;
}
/* Mark neighbour as processed and stack it */