summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlexandra Ellwood <lxs@mit.edu>2008-02-06 20:24:19 +0000
committerAlexandra Ellwood <lxs@mit.edu>2008-02-06 20:24:19 +0000
commitb1d03de332d2f10e20a1f5a49cef77171749bd24 (patch)
tree8d46df9fa73cc673e831f6439fc1f62a7736536b /src
parent266fde72702c39317d6a82c2aaf3de460bee633c (diff)
downloadkrb5-b1d03de332d2f10e20a1f5a49cef77171749bd24.tar.gz
krb5-b1d03de332d2f10e20a1f5a49cef77171749bd24.tar.xz
krb5-b1d03de332d2f10e20a1f5a49cef77171749bd24.zip
Remove AppleConnect workaround
AppleConnect fixed their bug and this workaround can be removed. ticket: new git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20221 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-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);
}