##// 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 107 out = self.connection
108 108 else:
109 109 out = soc
110 try:
110 111 data = i.recv(8192)
112 except socket.error:
113 break
111 114 if data:
112 115 out.send(data)
113 116 count = 0
General Comments 0
You need to be logged in to leave comments. Login now