From 228b5447861b95e79ecc705b481ed12980957cb3 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Wed, 4 Jun 2008 21:29:54 -0400 Subject: [PATCH] Sending the "run" command was balanced with a receive command * Source/DebuggerConnection.m: (run): Message the socket to -[receive] --- Source/DebuggerConnection.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/DebuggerConnection.m b/Source/DebuggerConnection.m index 10b3c47..c1d260d 100644 --- a/Source/DebuggerConnection.m +++ b/Source/DebuggerConnection.m @@ -124,6 +124,7 @@ - (void)run { [socket send:[self createCommand:@"run"]]; + [socket receive]; [self refreshStatus]; } -- 2.22.5