https://gitlab.opengeosys.org/ogs/ogs.git
Revision 2d89680bdeb9fc9568785b0d45b2c2c775ea9033 authored by Thomas Fischer on 15 October 2021, 06:37:47 UTC, committed by Dmitri Naumov on 15 October 2021, 19:53:24 UTC
Pointer to vector of Point's wasn't cleaned up properly.

In rotatePolygonToXY a pointer to the vector of
polygon points was created. The rotated polygon is
on this vector. When the polygon is returned from
the function it isn't possible to cleanup the vector
properly. So the creation of the polygon is move to
the function markNodesOutSideOfPolygon.
1 parent 2c8f206
Raw File
Tip revision: 2d89680bdeb9fc9568785b0d45b2c2c775ea9033 authored by Thomas Fischer on 15 October 2021, 06:37:47 UTC
[GL/MGTL] Cleanup Pointer to vector of Point's.
Tip revision: 2d89680
.gitignore
*.bak*
/build*/
*.sw[op]
tags
.ExternalData_*

# CLion IDE project files
*.iml
.idea

# Visual Studio Code project files
.vscode

# Conan package manager
conanbuildinfo.cmake
conaninfo.txt
CMakeLists.txt.user*

*.pyc
.venv

Tests/**/*.md5
Tests/Data/Parabolic/HT/InvalidProjectFiles/*.prj
web/.netlify

CMakeUserPresets.json

.snakemake
back to top