From 028db83b443cfabc7bd25b87a90b1630f70b7b86 Mon Sep 17 00:00:00 2001 From: Richard Frith-MacDonald Date: Thu, 26 Nov 1998 10:39:37 +0000 Subject: [PATCH] Bugfix counting ntimes a descriptor is added git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3331 72102866-910b-0410-8b05-ffd578937521 --- Source/NSRunLoop.m | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Source/NSRunLoop.m b/Source/NSRunLoop.m index 58203b662..2313a40ea 100644 --- a/Source/NSRunLoop.m +++ b/Source/NSRunLoop.m @@ -594,10 +594,8 @@ static int debug_run_loop = 0; info = [[RunLoopWatcher alloc] initWithType: type receiver: watcher data: data]; - /* Add the object to the array for the mode and keep count. */ + /* Add the object to the array for the mode. */ [self _addWatcher:info forMode:mode]; - info->count++; - [info release]; /* Now held in array. */ } }