lpcmanager
Clone
Summary
Browse
Changes
Graph
Fixed bug in socket client not working properly when command length was too long
2013-02-20, Laurent Bessard
d7a77fa42d15
Parents
31014083f399
Children
5122cd9373bd
Fixed bug in socket client not working properly when command length was too long
1 files changed, 1 insertions(+), 1 deletions(-)
+1
-1
LPCManager.py
--- a/LPCManager.py Wed Feb 20 18:45:28 2013 +0100
+++ b/LPCManager.py Wed Feb 20 18:46:26 2013 +0100
@@ -1808,7 +1808,7 @@
def readline(self):
idx = self.Buffer.find("\n")
- if idx == -1:
+ while idx == -1:
self.Buffer += self.socket.recv(2048)
idx = self.Buffer.find("\n")
if idx != -1: