Kaydet (Commit) 898cb8b7 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#982268 Copy-paste error

Change-Id: I68e8e6a564356bae620647b385e16279ff212d32
üst 9a65df25
...@@ -2153,9 +2153,9 @@ at_least_one_scoped_name : ...@@ -2153,9 +2153,9 @@ at_least_one_scoped_name :
$$ = $2; $$ = $2;
} else } else
{ {
StringList* pNames = new StringList(); StringList* pScopedNames = new StringList();
pNames->push_back(*$1); pScopedNames->push_back(*$1);
$$ = pNames; $$ = pScopedNames;
} }
delete($1); delete($1);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment