mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 06:40:48 +00:00
Fix a reference to an unset global 'unpack'
This commit is contained in:
parent
a2ed5c4a30
commit
ce1daa8135
1 changed files with 1 additions and 1 deletions
|
|
@ -201,7 +201,7 @@ parser = {
|
|||
-- Cache references for maximum speed
|
||||
local find, sub, gsub, char, push, pop, concat = string.find, string.sub, string.gsub, string.char, table.insert, table.remove, table.concat
|
||||
local first, last, match1, match2, match3, pos2, nsURI
|
||||
local unpack = unpack or table.unpack
|
||||
local unpack = table.unpack
|
||||
local pos = 1
|
||||
local state = "text"
|
||||
local textStart = 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue