-
- Downloads
[RDF] Fix ROOT-9898
Before this patch: he destructor of a derived node type destroyed its shared_ptr to the previous node. The destructor of the base node type, called _afterwards_, called fLoopManager->Deregister(this). In the special case in which the previous node was precisely RLoopManager and no other RInterfaces or nodes held a shared_ptr to it, the RLoopManager was being destructed (in the dtor of the derived class) just before that same node called Deregister on it (in the dtor of the base class). After this patch: the derived node types are responsible for calling Deregister, before destroying the shared_ptr to previous node. This fixes the use after delete reported in ROOT-9898.
Showing
- tree/dataframe/inc/ROOT/RDF/RAction.hxx 4 additions, 0 deletionstree/dataframe/inc/ROOT/RDF/RAction.hxx
- tree/dataframe/inc/ROOT/RDF/RActionBase.hxx 2 additions, 1 deletiontree/dataframe/inc/ROOT/RDF/RActionBase.hxx
- tree/dataframe/inc/ROOT/RDF/RFilter.hxx 4 additions, 0 deletionstree/dataframe/inc/ROOT/RDF/RFilter.hxx
- tree/dataframe/inc/ROOT/RDF/RRange.hxx 4 additions, 0 deletionstree/dataframe/inc/ROOT/RDF/RRange.hxx
- tree/dataframe/src/RActionBase.cxx 2 additions, 4 deletionstree/dataframe/src/RActionBase.cxx
- tree/dataframe/src/RFilterBase.cxx 3 additions, 5 deletionstree/dataframe/src/RFilterBase.cxx
- tree/dataframe/src/RRangeBase.cxx 2 additions, 5 deletionstree/dataframe/src/RRangeBase.cxx
Loading
Please register or sign in to comment