From 24d40de3232e6bdb74eef6179bb9484ab9933866 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Wed, 17 Feb 2010 01:43:24 -0500 Subject: [PATCH] Always clobber the stack in |-debuggerStep:| --- Source/GDBpConnection.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/GDBpConnection.m b/Source/GDBpConnection.m index bc52a99..fb1243b 100644 --- a/Source/GDBpConnection.m +++ b/Source/GDBpConnection.m @@ -679,14 +679,14 @@ void SocketAcceptCallback(CFSocketRef socket, // If this is the run command, tell the delegate that a bunch of updates // are coming. Also remove all existing stack routes and request a new stack. - if ([command isEqualToString:@"run"]) + if (YES || [command isEqualToString:@"run"]) { - [delegate clobberStack]; + //[delegate clobberStack]; [stackFrames_ removeAllObjects]; [self send:[self createCommand:@"stack_depth"]]; } - [self send:[self createRouted:[NSString stringWithFormat:@"%u", routingID] command:@"stack_get -d 0"]]; + //[self send:[self createRouted:[NSString stringWithFormat:@"%u", routingID] command:@"stack_get -d 0"]]; } /** -- 2.22.5