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

Fix uninitialized member. coverity CID 11272

git-svn-id: http://root.cern.ch/svn/root/trunk@35736 27541ba8-7e3a-0410-8455-c3a389f83636
parent 9be92e03
Branches
Tags
No related merge requests found
......@@ -70,6 +70,8 @@ TNeuron::TNeuron(TNeuron::ENeuronType type /*= kSigmoid*/,
fExtF = 0;
fExtD = 0;
fIndex = 0;
fDerivative = 0;
fInput = 0;
if(fType==kExternal) {
fExtF = (TFormula*)gROOT->FindObject(extF);
fExtD = (TFormula*)gROOT->FindObject(extD);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment