On Friday, April 5, 2002, at 05:10 PM, [EMAIL PROTECTED] wrote:

>
> Hello,
>
> For reasons beyond the scope of any explination, I still don't have a
> running GNUStep system, but browsing through the NSZombie changes if 
> found
> something very odd:
>
> NSObject.m:
>
> in GSMakeZombie and GSLogZombie
>
> if (allocationLock == 0)
>   {
>     objc_mutex_lock(allocationLock);
>   }
> and
> if (allocationLock == 0)
>   {
>     objc_mutex_unlock(allocationLock);
>   }
>
> which (IMHO) should be
>
> if (allocationLock != 0)
>   {
>     objc_mutex_lock(allocationLock);
>   }
> and
> if (allocationLock != 0)
>   {
>     objc_mutex_unlock(allocationLock);
>   }
>


Thanks ... fixed.


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

Reply via email to