Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
TClass::GetListOfBases: actually return fBase after loading via TProt…
…oClass
  • Loading branch information
pcanal committed Oct 22, 2020
commit 4e6fa1f76e5ee0559fdcd4305d8d66ab04d520ed
4 changes: 2 additions & 2 deletions core/meta/src/TClass.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -3593,8 +3593,8 @@ TList *TClass::GetListOfBases()
if (!fHasRootPcmInfo) {
// The bases are in our ProtoClass; we don't need the class info.
TProtoClass *proto = TClassTable::GetProtoNorm(GetName());
if (proto)
proto->FillTClass(this);
if (proto && proto->FillTClass(this))
return fBase;
}
}
// We test again on fCanLoadClassInfo has another thread may have executed it.
Expand Down