Hi.

In NSMatrix.m, we have:

- (void) setTarget: anObject
{
  ASSIGN(_target, anObject);
}

and it should be 

- (void) setTarget: anObject
{
  _target = anObject;
}

Otherwise, _target will never be released since the retain count will
always be >= 1.

Ludovic

-- 
Live as if you were to die tomorrow.
Learn as if you were to live forever.
 - Gandhi


_______________________________________________
Bug-gnustep mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-gnustep

Reply via email to