Skip to content
Snippets Groups Projects
Commit 2045852c authored by Andrei Gheata's avatar Andrei Gheata
Browse files

Coverity fix

git-svn-id: http://root.cern.ch/svn/root/trunk@39798 27541ba8-7e3a-0410-8455-c3a389f83636
parent 170b2eb2
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,8 @@ TGeoBranchArray::TGeoBranchArray(const TGeoBranchArray& other)
:TObject(other),
fLevel(other.fLevel),
fArray(NULL),
fMatrix(NULL)
fMatrix(NULL),
fClient(other.fClient)
{
// Copy constructor.
if (fLevel) fArray = new UShort_t[fLevel];
......@@ -73,6 +74,7 @@ TGeoBranchArray& TGeoBranchArray::operator=(const TGeoBranchArray& other)
fMatrix = new TGeoHMatrix();
fMatrix->CopyFrom(other.fMatrix);
}
fClient = other.fClient;
return *this;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment