mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Couple of small fixes
This commit is contained in:
parent
8110ccb38a
commit
69efd623c9
6 changed files with 17 additions and 16 deletions
|
|
@ -605,10 +605,7 @@ class Dump(object):
|
|||
if column != "__infos__":
|
||||
info = tableValues[column]
|
||||
|
||||
if len(info["values"]) <= i:
|
||||
continue
|
||||
|
||||
if info["values"][i] is None:
|
||||
if len(info["values"]) <= i or info["values"][i] is None:
|
||||
value = u''
|
||||
else:
|
||||
value = getUnicode(info["values"][i])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue