diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-08 20:18:18 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-08 20:28:02 +0000 |
commit | ec689e4561ea300ed1e381eae016b05211601763 (patch) | |
tree | c1a33bd3c41d36171e70d26ea840378c379410e6 /idlc | |
parent | 2a7f4e37b59fb0a49dad3cb466cdf22c409dc70e (diff) |
coverity#707935 Uninitialized scalar field
Change-Id: I7c957419b72cc97dbec819c51acb521bcd716624
Diffstat (limited to 'idlc')
-rw-r--r-- | idlc/source/astdeclaration.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/idlc/source/astdeclaration.cxx b/idlc/source/astdeclaration.cxx index 60f862639d8c..822a26bd6e89 100644 --- a/idlc/source/astdeclaration.cxx +++ b/idlc/source/astdeclaration.cxx @@ -49,6 +49,7 @@ AstDeclaration::AstDeclaration(NodeType type, const OString& name, AstScope* pSc , m_bIsAdded(false) , m_bInMainFile(false) , m_bPredefined(false) + , m_lineNumber(0) { if ( m_pScope ) { |