mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
synced 2025-10-30 02:02:30 +00:00
fixed double-used local variable name
This commit is contained in:
@@ -411,9 +411,9 @@ XMLStreamParser::EventType XMLStreamParser::nextImpl(bool peek)
|
|||||||
}
|
}
|
||||||
case EV_START_ELEMENT:
|
case EV_START_ELEMENT:
|
||||||
{
|
{
|
||||||
if (const ElementEntry* e = getElement())
|
if (const ElementEntry* pEntry = getElement())
|
||||||
{
|
{
|
||||||
switch (e->content)
|
switch (pEntry->content)
|
||||||
{
|
{
|
||||||
case Content::Empty:
|
case Content::Empty:
|
||||||
throw XMLStreamParserException(*this, "element in empty content");
|
throw XMLStreamParserException(*this, "element in empty content");
|
||||||
|
|||||||
Reference in New Issue
Block a user