From 7e629ac799ff6d16bcfa2e299e22c08316890678 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 4 Apr 2014 11:03:51 +0100 Subject: coverity#707973 Uninitialized scalar field Change-Id: I882bca4d09fe655275543cfeb3add59d4584d14b --- rsc/source/parser/rscpar.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'rsc/source') diff --git a/rsc/source/parser/rscpar.cxx b/rsc/source/parser/rscpar.cxx index 984d3655198d..2d0f496219fd 100644 --- a/rsc/source/parser/rscpar.cxx +++ b/rsc/source/parser/rscpar.cxx @@ -34,6 +34,8 @@ void RscFileInst::Init() RscFileInst::RscFileInst( RscTypCont * pTC, sal_uLong lIndexSrc, sal_uLong lFIndex, FILE * fFile ) + : nErrorLine(0) + , nErrorPos(0) { pTypCont = pTC; Init(); -- cgit