diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-02 21:04:58 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-03 09:07:57 +0100 |
commit | 898cb8b726128c98e44539ca3c24e72ceb1742c6 (patch) | |
tree | c302d56f6bed9b3514e4d5bbf57ae9df24673e68 /idlc | |
parent | 9a65df25138750915f9c6e1e1fa09988a2d11434 (diff) |
coverity#982268 Copy-paste error
Change-Id: I68e8e6a564356bae620647b385e16279ff212d32
Diffstat (limited to 'idlc')
-rw-r--r-- | idlc/source/parser.y | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/idlc/source/parser.y b/idlc/source/parser.y index e06b967f4225..c239fbaad31c 100644 --- a/idlc/source/parser.y +++ b/idlc/source/parser.y @@ -2153,9 +2153,9 @@ at_least_one_scoped_name : $$ = $2; } else { - StringList* pNames = new StringList(); - pNames->push_back(*$1); - $$ = pNames; + StringList* pScopedNames = new StringList(); + pScopedNames->push_back(*$1); + $$ = pScopedNames; } delete($1); } |