From 8dc52dabf247ef053ed4846bff6cdf5b27be3d10 Mon Sep 17 00:00:00 2001
From: Philippe Canal <pcanal@fnal.gov>
Date: Wed, 9 Dec 2009 21:55:27 +0000
Subject: [PATCH] fix uninitialized member (coverity)

git-svn-id: http://root.cern.ch/svn/root/trunk@31746 27541ba8-7e3a-0410-8455-c3a389f83636
---
 io/io/src/TCollectionProxyFactory.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/io/io/src/TCollectionProxyFactory.cxx b/io/io/src/TCollectionProxyFactory.cxx
index 8599a29334b..338dc6eea2c 100644
--- a/io/io/src/TCollectionProxyFactory.cxx
+++ b/io/io/src/TCollectionProxyFactory.cxx
@@ -146,7 +146,7 @@ TCollectionStreamer::TCollectionStreamer() : fStreamer(0)
    // Initializing constructor.
 }
 
-TCollectionStreamer::TCollectionStreamer(const TCollectionStreamer& c)
+TCollectionStreamer::TCollectionStreamer(const TCollectionStreamer& c) : fStreamer(0)
 {
    // Copy constructor.
    if ( c.fStreamer )  {
-- 
GitLab