From 01559280f39ae3cf2a79c3e78833d6716cf52d07 Mon Sep 17 00:00:00 2001 From: theraven Date: Sat, 27 Feb 2010 19:38:24 +0000 Subject: [PATCH] Fixed LOCK() -> UNLOCK(). Thanks to TOM! --- sync.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sync.m b/sync.m index 39d3c65..13876c9 100644 --- a/sync.m +++ b/sync.m @@ -115,5 +115,5 @@ void objc_sync_exit(id obj) { Class lockClass = findLockClass(obj); mutex_t *lock = object_getIndexedIvars(lockClass); - LOCK(lock); + UNLOCK(lock); }