diff options
-rw-r--r-- | SmartDeviceLink/SDLTouchManager.m | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLTouchManager.m b/SmartDeviceLink/SDLTouchManager.m index f987191b7..fc023026f 100644 --- a/SmartDeviceLink/SDLTouchManager.m +++ b/SmartDeviceLink/SDLTouchManager.m @@ -272,6 +272,9 @@ static NSUInteger const MaximumNumberOfTouches = 2; } - (void)sdl_cancelSingleTapTimer { + if (self.singleTapTimer == NULL) { + return; + } dispatch_stop_timer(self.singleTapTimer); self.singleTapTimer = NULL; } |