bug-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: setNextKeyView: dangling pointers


From: Nicola Pero
Subject: Re: setNextKeyView: dangling pointers
Date: Mon, 21 Oct 2002 00:59:26 +0100 (BST)

> 
> The doubly linked list that keeps track of the next/previous key views
> in NSView can be messed up easily, leaving behind dangling pointers
> to deallocated views.
> (I was using a CVS version from october 19th).
 
> Here is a test program:

Thanks - brilliant

 
> As you can see, the list structure is inconsistent, resulting in a message 
> sent to the deallocated view c.

Yes :-)


> I suggest to rewrite the setNextKeyView/setPreviousKeyView methods
> in a way that they never produce inconsistent lists.

Agreed!


> Here is a patch to NSView.m
> The code is a little bit tricky, it tries to assign the right
> values to the right fields at the right time, so that the recursive
> message sends finally terminate.

Thanks! - yes I made similar changes, with minor differences ...


> 2002-10-20 16:43:11.575 MyTest[17896] setNextKeyView of a to c
> 2002-10-20 16:43:11.590 MyTest[17896] setPreviousKeyView of c to a
> 2002-10-20 16:43:11.590 MyTest[17896] setNextKeyView of b to c
> 2002-10-20 16:43:11.591 MyTest[17896] setPreviousKeyView of c to b
> 2002-10-20 16:43:11.591 MyTest[17896] setNextKeyView of a to 0
> 2002-10-20 16:43:11.592 MyTest[17896] setPreviousKeyView of c to 0

... in particular, I wanted to prevent the code from doing this
`setPreviousKeyView of c to 0' (which is sort of an internally generated
call), so that we only and exactly perform the calls to setup the key view
chain.

I know it doesn't make much of a difference in most practical cases :-)
but I thought if you subclass NSView and override setPreviousKeyView: to
do something more than it does in NSView, you don't want it to be called
spuriously - it's better if we call each set{Next,Previous}KeyView: method
only once for each involved view, to set up the exact final next/previous
view, avoiding 'internal/bogus' calls.

Thanks for contributing - let me know if it still doesn't work! :-)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]