summaryrefslogtreecommitdiff
path: root/idlc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-10-30 14:21:13 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-10-30 14:34:29 +0000
commit9d522e214c074b94cf8cbb6a82f80286838a3c54 (patch)
tree96001dd22f72a452d72fe0680ce6113910b28c2d /idlc
parent37b53e179d7727c817d175d8102e87f7f23e9bb8 (diff)
coverity#982268 silence Copy-paste error
Change-Id: I10e5dd8ea4097892d2571304d982ab20ee230988
Diffstat (limited to 'idlc')
-rw-r--r--idlc/source/parser.y1
1 files changed, 1 insertions, 0 deletions
diff --git a/idlc/source/parser.y b/idlc/source/parser.y
index c239fbaad31c..afa38013a3da 100644
--- a/idlc/source/parser.y
+++ b/idlc/source/parser.y
@@ -2154,6 +2154,7 @@ at_least_one_scoped_name :
} else
{
StringList* pScopedNames = new StringList();
+ //coverity [copy_paste_error]
pScopedNames->push_back(*$1);
$$ = pScopedNames;
}