Skip to content
Merged
Changes from 1 commit
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
Next Next commit
[TDF] Fix jitting in the empty source case (#2)
  • Loading branch information
eguiraud committed Jun 22, 2017
commit 0433122a412718b2b58b20dbac490e86d712e9c9
2 changes: 1 addition & 1 deletion tree/treeplayer/inc/ROOT/TDFInterface.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ public:
{
auto df = GetDataFrameChecked();
auto tree = df->GetTree();
auto branches = tree->GetListOfBranches();
auto branches = tree ? tree->GetListOfBranches() : nullptr;
auto tmpBranches = fProxiedPtr->GetTmpBranches();
auto tmpBookedBranches = df->GetBookedBranches();
const std::string expressionInt(expression);
Expand Down