-
Notifications
You must be signed in to change notification settings - Fork 10.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[SR-2462] Compiler is sometimes overreleasing CF objects #45067
Comments
I have had another look into this and the extra release only seems to occur when a `let' constant is passed to a CF function taking a CFTypeRef is cast to an IUO<AnyObject> and it is this cast that its being released. I have attached the SIL as it should make it clearer what is going on. If the result from CFUUIDCreate() is a `var', is not assigned, is assigned via optional binding or cast directly to a CFUUID then the extra release does not occur. cftest2.swift shows these variants, only testWithLet() does the extra release The relevant bit from cftest2.sil :
The release_value %12 is the incorrect extra release |
It is reported in swiftlang/swift-corelibs-foundation#898 that this may be fixed on master now. |
After retesting this now appears to be fixed in master as I can not reproduce it anymore |
Attachment: Download
Environment
This is on linux but I have seen the same issue on Darwin as well
Swift version 3.0-dev (LLVM 17c4c6cf7a, Clang 4ca9e01a7c, Swift 7a0ba75)
Target: x86_64-unknown-linux-gnu
swift-corelibs-foundation: 66fad9f
Additional Detail from JIRA
md5: a5c7bc4b60607dd23f9b56699626d161
relates to:
Issue Description:
When calling CoreFoundation functions the swift compiler inserts rt_swift_release calls to release any objects it has gained ownership of. However sometimes it releases objects incorrectly causing the object to be freed early when it shouldnt be. The attached cftest.swift demonstrates this
running it gives:
I have attached an disassembly of the two functions, the extra calls after each call to CFHash() can be seen here
compared to:
which has just the one release to balance the CFStringCreateWithCString() ownership
The text was updated successfully, but these errors were encountered: