Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions core/meta/src/TMethodCall.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,10 @@ void TMethodCall::InitImplementation(const char *methodname, const char *params,
// 'methodname' should NOT have any scope information in it. The scope
// information should be passed via the TClass or CINT ClassInfo.

if (!fFunc)
if (!fFunc) {
R__LOCKGUARD2(gCINTMutex);
fFunc = gCint->CallFunc_Factory();
else
} else
gCint->CallFunc_Init(fFunc);

fClass = cl;
Expand Down