mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Patch for an Issue #589
This commit is contained in:
parent
6c80f2903b
commit
41d6c1af82
1 changed files with 1 additions and 1 deletions
|
|
@ -120,7 +120,7 @@ class Popen(subprocess.Popen):
|
||||||
nAvail = maxsize
|
nAvail = maxsize
|
||||||
if nAvail > 0:
|
if nAvail > 0:
|
||||||
(errCode, read) = ReadFile(x, nAvail, None)
|
(errCode, read) = ReadFile(x, nAvail, None)
|
||||||
except ValueError:
|
except (ValueError, NameError):
|
||||||
return self._close(which)
|
return self._close(which)
|
||||||
except (subprocess.pywintypes.error, Exception), why:
|
except (subprocess.pywintypes.error, Exception), why:
|
||||||
if why[0] in (109, errno.ESHUTDOWN):
|
if why[0] in (109, errno.ESHUTDOWN):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue