Skip to content

Commit

Permalink
fix #2866
Browse files Browse the repository at this point in the history
  • Loading branch information
shaomeng committed Nov 15, 2021
1 parent 1391912 commit 098e78e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test_apps/smokeTests/gridTools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,10 @@ VAPoR::CurvilinearGrid *MakeCurvilinearTerrainGrid(const std::vector<size_t> &bs
std::vector<float *> blks = AllocateBlocks(bs, dims);
CurvilinearGrid * cg = new CurvilinearGrid(dims, bs, blks, *xrg, *yrg, *zrg, NULL);

delete xrg;
delete yrg;
delete zrg;

return (cg);
}

Expand Down

0 comments on commit 098e78e

Please sign in to comment.