mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 13:11:29 +00:00
fix for a bug reported by l0rda@l0rda.biz (TypeError: cannot concatenate 'str' and 'NoneType' objects)
This commit is contained in:
@@ -294,7 +294,8 @@ class Filesystem:
|
|||||||
else:
|
else:
|
||||||
chunk = ""
|
chunk = ""
|
||||||
|
|
||||||
newFileContent += chunk
|
if chunk:
|
||||||
|
newFileContent += chunk
|
||||||
|
|
||||||
fileContent = newFileContent
|
fileContent = newFileContent
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user