Skip to content
Snippets Groups Projects
Commit 846c78fd authored by Rene Brun's avatar Rene Brun
Browse files

From Lukasz:

fix a bug in the split collection
stuff.


git-svn-id: http://root.cern.ch/svn/root/trunk@24089 27541ba8-7e3a-0410-8455-c3a389f83636
parent fc25afdf
No related branches found
No related tags found
No related merge requests found
...@@ -226,8 +226,10 @@ Int_t TBranchSTL::Fill() ...@@ -226,8 +226,10 @@ Int_t TBranchSTL::Fill()
// Determine the actual class of current element // Determine the actual class of current element
//------------------------------------------------------------------------ //------------------------------------------------------------------------
element = *(char**)fCollProxy->At( i ); element = *(char**)fCollProxy->At( i );
if( !element ) if( !element ) {
fInd.At(i) = 0; fInd.At(i) = 0;
continue;
}
actClass = cl->GetActualClass( element ); actClass = cl->GetActualClass( element );
brIter = fBranchMap.find( actClass ); brIter = fBranchMap.find( actClass );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment