File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -2708,7 +2708,14 @@ def popValue():
2708
2708
'foobar'
2709
2709
"""
2710
2710
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
2712
2719
2713
2720
def wasLastResponseDBMSError ():
2714
2721
"""
Original file line number Diff line number Diff line change 19
19
from thirdparty .six import unichr as _unichr
20
20
21
21
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22
- VERSION = "1.5.5.11 "
22
+ VERSION = "1.5.5.12 "
23
23
TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
24
24
TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
25
25
VERSION_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