Skip to content

Commit

Permalink
[TDF] Fix jitting in the empty source case (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
eguiraud authored and dpiparo committed Jun 26, 2017
1 parent 13bd033 commit 3806aa3
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 3806aa3

Please sign in to comment.