Skip to content
Snippets Groups Projects
Commit e861c125 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

RootUtils: fix for TSMethodCall destructor

Do not cleanup the thread-specific `TMethodCall` pointer either in case
gCling has already been destroyed.
parent 3f2e624c
No related branches found
No related tags found
2 merge requests!59383cppcheck in trigger code: Prefer prefix ++/-- operators for non-primitive types.,!59031RootUtils: fix for TSMethodCall destructor
......@@ -75,6 +75,7 @@ TSMethodCall::~TSMethodCall()
TInterpreter* cling ATLAS_THREAD_SAFE = gCling;
if (!cling) {
m_meth.release();
m_tsMeth.release();
}
}
......
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