From 663531bdc4cef087f0703c6d58cf0d1c681cbdd8 Mon Sep 17 00:00:00 2001 From: Lubos Dolezel Date: Fri, 27 Jul 2018 08:49:09 +0200 Subject: [PATCH] Build fix --- CoreGraphics/CGGeometry.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CoreGraphics/CGGeometry.m b/CoreGraphics/CGGeometry.m index 055c076f..c44f4496 100644 --- a/CoreGraphics/CGGeometry.m +++ b/CoreGraphics/CGGeometry.m @@ -84,8 +84,8 @@ CFDictionaryRef CGPointCreateDictionaryRepresentation(CGPoint point) dict = CFDictionaryCreate(NULL, (const void**) keys, (const void**) values, 2, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks); - CRelease(values[0]); - CRelease(values[1]); + CFRelease(values[0]); + CFRelease(values[1]); return dict; }