mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Patch related to #4693
This commit is contained in:
parent
6942abf090
commit
a23faaeb8c
2 changed files with 9 additions and 2 deletions
|
|
@ -2708,7 +2708,14 @@ def popValue():
|
|||
'foobar'
|
||||
"""
|
||||
|
||||
return getCurrentThreadData().valueStack.pop()
|
||||
retVal = None
|
||||
|
||||
try:
|
||||
retVal = getCurrentThreadData().valueStack.pop()
|
||||
except IndexError:
|
||||
pass
|
||||
|
||||
return retVal
|
||||
|
||||
def wasLastResponseDBMSError():
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue