diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-04 11:03:51 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-04 12:14:22 +0100 |
commit | 7e629ac799ff6d16bcfa2e299e22c08316890678 (patch) | |
tree | 998092d063b0119546b5648e6667e1c437b96d3a /rsc | |
parent | c58f9aded89774462d466858388d7d7b5cd109f2 (diff) |
coverity#707973 Uninitialized scalar field
Change-Id: I882bca4d09fe655275543cfeb3add59d4584d14b
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/source/parser/rscpar.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
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(); |