Skip to content

Commit

Permalink
Fix leak (refs #12842)
Browse files Browse the repository at this point in the history
  • Loading branch information
aeslaughter committed Feb 7, 2019
1 parent d810553 commit 95a2042
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions framework/src/interfaces/Coupleable.C
Expand Up @@ -107,6 +107,11 @@ Coupleable::~Coupleable()
itt->release();
delete itt;
}
for (auto & it : _default_vector_value)
{
it.second->release();
delete it.second;
}
for (auto & it : _ad_default_value)
{
it.second->release();
Expand Down

0 comments on commit 95a2042

Please sign in to comment.