From 1b6a2ffbc30efbbe4f1d9f0346ed6f4f0e7df583 Mon Sep 17 00:00:00 2001 From: Atilim Cetin Date: Tue, 28 Aug 2012 01:37:17 +0300 Subject: [PATCH] Fixed incorrect releasing of timer object --- Countly.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Countly.m b/Countly.m index da0db18b..7d430059 100755 --- a/Countly.m +++ b/Countly.m @@ -672,7 +672,7 @@ - (void)dealloc if (timer) { [timer invalidate]; - [timer release]; + timer = nil; } [eventQueue release];