mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-30 17:59:21 +00:00
fix crash of memory leak
This commit is contained in:
parent
e7ed8d60bb
commit
ca83b41c52
1 changed files with 1 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ import AVFoundation
|
|||
if (sCall.userData == nil) {
|
||||
return nil
|
||||
}
|
||||
return Unmanaged<CallAppData>.fromOpaque(sCall.userData!).takeRetainedValue()
|
||||
return Unmanaged<CallAppData>.fromOpaque(sCall.userData!).takeUnretainedValue()
|
||||
}
|
||||
|
||||
@objc static func setAppData(call:OpaquePointer, appData: CallAppData) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue