From 458dbc5c41f503823f01b0c89165f0c4f967733f Mon Sep 17 00:00:00 2001 From: Eike Bartels Date: Mon, 3 Mar 2014 10:46:32 +1100 Subject: [PATCH] fixed NSZombi crash (double release) --- FRDLivelyButton/FRDLivelyButton.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FRDLivelyButton/FRDLivelyButton.m b/FRDLivelyButton/FRDLivelyButton.m index 15d08d2..3e0068d 100644 --- a/FRDLivelyButton/FRDLivelyButton.m +++ b/FRDLivelyButton/FRDLivelyButton.m @@ -358,7 +358,7 @@ -(void) showUnHighlight (__bridge id) layer.path, (id) CFBridgingRelease(scaledUpPath), (id) CFBridgingRelease(scaledDownPath), - (id) CFBridgingRelease(finalPath) + (__bridge id) finalPath ]; NSArray *times = @[ @(0.0), @(0.85), @(0.93), @(1.0) ];