mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: extrudeToRegionMesh: memory leak
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -2430,10 +2430,9 @@ int main(int argc, char *argv[])
|
||||
// Add the new patches
|
||||
forAll(regionPatches, patchI)
|
||||
{
|
||||
regionPatches[patchI] = regionPatches[patchI]->clone
|
||||
(
|
||||
regionMesh.boundaryMesh()
|
||||
).ptr();
|
||||
polyPatch* ppPtr = regionPatches[patchI];
|
||||
regionPatches[patchI] = ppPtr->clone(regionMesh.boundaryMesh()).ptr();
|
||||
delete ppPtr;
|
||||
}
|
||||
regionMesh.clearOut();
|
||||
regionMesh.removeFvBoundary();
|
||||
|
||||
Reference in New Issue
Block a user