mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
minor fix
This commit is contained in:
parent
9b99530add
commit
14e8ca6d41
3 changed files with 17 additions and 6 deletions
|
|
@ -33,10 +33,16 @@ class _ThreadData(threading.local):
|
|||
"""
|
||||
|
||||
def __init__(self):
|
||||
global shared
|
||||
self.reset()
|
||||
|
||||
def reset(self):
|
||||
"""
|
||||
Resets thread data model
|
||||
"""
|
||||
|
||||
self.disableStdOut = False
|
||||
self.hashDBCursor = None
|
||||
self.inTransaction = False
|
||||
self.lastErrorPage = None
|
||||
self.lastHTTPError = None
|
||||
self.lastRedirectMsg = None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue