mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Fixes #5915
This commit is contained in:
parent
e7fbc2b9db
commit
c25344b799
3 changed files with 6 additions and 3 deletions
|
|
@ -163,6 +163,9 @@ class BigArray(list):
|
|||
raise SqlmapSystemException(errMsg)
|
||||
|
||||
def _checkcache(self, index):
|
||||
if self.cache is not None and not isinstance(self.cache, Cache):
|
||||
self.cache = None
|
||||
|
||||
if (self.cache and self.cache.index != index and self.cache.dirty):
|
||||
filename = self._dump(self.cache.data)
|
||||
self.chunks[self.cache.index] = filename
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue