Skip to content
Snippets Groups Projects
Commit 8dc52dab authored by Philippe Canal's avatar Philippe Canal
Browse files

fix uninitialized member (coverity)

git-svn-id: http://root.cern.ch/svn/root/trunk@31746 27541ba8-7e3a-0410-8455-c3a389f83636
parent 053e5866
No related branches found
No related tags found
No related merge requests found
...@@ -146,7 +146,7 @@ TCollectionStreamer::TCollectionStreamer() : fStreamer(0) ...@@ -146,7 +146,7 @@ TCollectionStreamer::TCollectionStreamer() : fStreamer(0)
// Initializing constructor. // Initializing constructor.
} }
TCollectionStreamer::TCollectionStreamer(const TCollectionStreamer& c) TCollectionStreamer::TCollectionStreamer(const TCollectionStreamer& c) : fStreamer(0)
{ {
// Copy constructor. // Copy constructor.
if ( c.fStreamer ) { if ( c.fStreamer ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment