summaryrefslogtreecommitdiff
path: root/rsc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-13 14:24:11 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-13 16:25:11 +0000
commitf008fe11b7723b9433d208af2b6d9808e3460844 (patch)
treea69a2d225837fe77f162af39399d21ab1f03f110 /rsc
parentdca7bd06ca12d58e853a95ed1fc066f9da7d9e05 (diff)
coverity#708798 Unused pointer value
Change-Id: Ib27f174b37577a8572fb853a7040de51e95d665e
Diffstat (limited to 'rsc')
-rw-r--r--rsc/source/parser/rscinit.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/rsc/source/parser/rscinit.cxx b/rsc/source/parser/rscinit.cxx
index abcc5942e282..60798ab27cec 100644
--- a/rsc/source/parser/rscinit.cxx
+++ b/rsc/source/parser/rscinit.cxx
@@ -59,7 +59,6 @@ void RscTypCont::Init()
RscTupel * pStringLongTupel;
RscCont * pStringTupelList;
RscCont * pStringLongTupelList;
- RscArray * pLangStringTupelList;
RscArray * pLangStringLongTupelList;
RscTop * pClassMgr;
@@ -320,7 +319,7 @@ void RscTypCont::Init()
aBaseLst.push_back( pLangStringList = InitLangStringList( pStringList ) );
aBaseLst.push_back( pStringTupel = InitStringTupel() );
aBaseLst.push_back( pStringTupelList = InitStringTupelList( pStringTupel ) );
- aBaseLst.push_back( pLangStringTupelList = InitLangStringTupelList( pStringTupelList ) );
+ aBaseLst.push_back( InitLangStringTupelList( pStringTupelList ) );
aBaseLst.push_back( pStringLongTupel = InitStringLongTupel() );
aBaseLst.push_back( pStringLongTupelList = InitStringLongTupelList( pStringLongTupel ) );
aBaseLst.push_back( pLangStringLongTupelList = InitLangStringLongTupelList( pStringLongTupelList ) );