Skip to content
Snippets Groups Projects
Commit 2f13365c authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

avoid spurious error message, when no storage fix is active/used

parent 3f46b6d7
No related branches found
No related tags found
No related merge requests found
......@@ -493,7 +493,7 @@ ComputeChunkAtom::~ComputeChunkAtom()
{
// check nfix in case all fixes have already been deleted
if (modify->nfix) modify->delete_fix(id_fix);
if (id_fix && modify->nfix) modify->delete_fix(id_fix);
delete [] id_fix;
memory->destroy(chunk);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment