BUG: extrudeToRegionMesh: memory leak
This commit is contained in:
parent
436464a47c
commit
8870892855
1 changed files with 4 additions and 5 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue