mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
Patch related to #4693
This commit is contained in:
@@ -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():
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user