Fixed LOCK() -> UNLOCK().

Thanks to TOM!
This commit is contained in:
theraven 2010-02-27 19:38:24 +00:00
parent ae11414b4d
commit 01559280f3

2
sync.m
View File

@ -115,5 +115,5 @@ void objc_sync_exit(id obj)
{
Class lockClass = findLockClass(obj);
mutex_t *lock = object_getIndexedIvars(lockClass);
LOCK(lock);
UNLOCK(lock);
}