mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-07 17:02:39 +01:00
fix for a bug reported by l0rda@l0rda.biz (TypeError: cannot concatenate 'str' and 'NoneType' objects)
This commit is contained in:
parent
b667c50588
commit
bd4fbb3251
1 changed files with 2 additions and 1 deletions
|
|
@ -294,7 +294,8 @@ class Filesystem:
|
|||
else:
|
||||
chunk = ""
|
||||
|
||||
newFileContent += chunk
|
||||
if chunk:
|
||||
newFileContent += chunk
|
||||
|
||||
fileContent = newFileContent
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue