From 8c4b7f73b9882f30377bf9bf3635c8690c19ac72 Mon Sep 17 00:00:00 2001 From: Axel Naumann <Axel.Naumann@cern.ch> Date: Thu, 10 Dec 2009 15:09:40 +0000 Subject: [PATCH] Init var before accessing its value (coverity) git-svn-id: http://root.cern.ch/svn/root/trunk@31802 27541ba8-7e3a-0410-8455-c3a389f83636 --- cint/cint/src/opr.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cint/cint/src/opr.cxx b/cint/cint/src/opr.cxx index c97e754fa11..c53f2387e8c 100644 --- a/cint/cint/src/opr.cxx +++ b/cint/cint/src/opr.cxx @@ -2696,7 +2696,7 @@ int G__parenthesisovldobj(G__value* result3, G__value* result, const char* realn #endif ) { - int known; + int known = 0; long store_struct_offset; int store_tagnum; int funcmatch; -- GitLab