##// END OF EJS Templates
tests: fix toctou race in tinyproxy.py (issue3795)...
Mads Kiilerich -
r18519:ca430fb6 stable
parent child Browse files
Show More
@@ -107,7 +107,10 b' class ProxyHandler (BaseHTTPServer.BaseH'
107 out = self.connection
107 out = self.connection
108 else:
108 else:
109 out = soc
109 out = soc
110 data = i.recv(8192)
110 try:
111 data = i.recv(8192)
112 except socket.error:
113 break
111 if data:
114 if data:
112 out.send(data)
115 out.send(data)
113 count = 0
116 count = 0
General Comments 0
You need to be logged in to leave comments. Login now