1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-11 00:49:02 +00:00

fixed a global variable in http.lua

This commit is contained in:
patrik
2012-06-11 21:02:41 +00:00
parent 44b46bb148
commit b96ffc0e14

View File

@@ -1750,7 +1750,7 @@ function grab_forms(body)
local forms = {}
while form_opening do
form_closing = string.find(body, form_end_expr, form_opening+1)
local form_closing = string.find(body, form_end_expr, form_opening+1)
if form_closing == nil then --html code contains errors
break
end