mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Fixes #5076
This commit is contained in:
parent
be987815c9
commit
5eaf1d2d27
2 changed files with 2 additions and 2 deletions
|
|
@ -433,7 +433,7 @@ def _setStdinPipeTargets():
|
|||
def next(self):
|
||||
try:
|
||||
line = next(conf.stdinPipe)
|
||||
except (IOError, OSError):
|
||||
except (IOError, OSError, TypeError):
|
||||
line = None
|
||||
|
||||
if line:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue