summaryrefslogtreecommitdiffstats
path: root/src/ccapi
diff options
context:
space:
mode:
Diffstat (limited to 'src/ccapi')
-rw-r--r--src/ccapi/lib/ccapi_ccache.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/ccapi/lib/ccapi_ccache.c b/src/ccapi/lib/ccapi_ccache.c
index c36a2b0ef..3905a0696 100644
--- a/src/ccapi/lib/ccapi_ccache.c
+++ b/src/ccapi/lib/ccapi_ccache.c
@@ -157,19 +157,6 @@ cc_int32 ccapi_ccache_release (cc_ccache_t io_ccache)
if (!err) {
cci_identifier_release (ccache->identifier);
-#if TARGET_OS_MAC
-#warning Workaround for AppleConnect crash causes leak
- CFBundleRef main_bundle = CFBundleGetMainBundle ();
- if (main_bundle) {
- CFStringRef bundle_id = CFBundleGetIdentifier (main_bundle);
- if (bundle_id) {
- CFStringRef ac_id = CFSTR("com.apple.ist.ds.appleconnect");
- if (CFStringCompare (bundle_id, ac_id, 0) == kCFCompareEqualTo) {
- return ccNoError;
- }
- }
- }
-#endif
free ((char *) ccache->functions);
free (ccache);
}