mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
Fixes attempt to index a nil value
This commit is contained in:
parent
f63d6736f9
commit
64a9ffd45d
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@ function newParser()
|
|||
error("XmlParser: nothing to close with " .. label)
|
||||
end
|
||||
if toclose:name() ~= label then
|
||||
error("XmlParser: trying to close " .. toclose.name .. " with " .. label)
|
||||
error("XmlParser: trying to close " .. toclose:name() .. " with " .. label)
|
||||
end
|
||||
top:addChild(toclose)
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue