mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Couple of bug fixes
This commit is contained in:
parent
be216041e2
commit
85b8d36620
4 changed files with 7 additions and 7 deletions
|
|
@ -106,7 +106,7 @@ class HashDB(object):
|
|||
if retVal is None:
|
||||
retVal = self._read_cache.get(hash_)
|
||||
|
||||
if not retVal:
|
||||
if retVal is None:
|
||||
for _ in xrange(HASHDB_RETRIEVE_RETRIES):
|
||||
try:
|
||||
for row in self.cursor.execute("SELECT value FROM storage WHERE id=?", (hash_,)):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue