File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -2708,7 +2708,14 @@ def popValue():
27082708 'foobar'
27092709 """
27102710
2711- return getCurrentThreadData ().valueStack .pop ()
2711+ retVal = None
2712+
2713+ try :
2714+ retVal = getCurrentThreadData ().valueStack .pop ()
2715+ except IndexError :
2716+ pass
2717+
2718+ return retVal
27122719
27132720def wasLastResponseDBMSError ():
27142721 """
Original file line number Diff line number Diff line change 1919from thirdparty .six import unichr as _unichr
2020
2121# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22- VERSION = "1.5.5.11 "
22+ VERSION = "1.5.5.12 "
2323TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2424TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2525VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
You can’t perform that action at this time.
0 commit comments