swift_unknownRelease崩溃 - SwiftHTTP

时间:2016-04-13 03:01:05

标签: ios swift exc-bad-access

我突然开始在我的某个应用程序的新更新中观察到下面的崩溃。它似乎经常发生,并且令人困惑,因为我在过去的6个月中没有对代码的这一部分进行任何更改。我确实想知道this(EXC_BAD_ACCESS返回投掷字典)Swift雷达错误可能是相关的,如果崩溃是由于为此请求形成了params字典。

更新 这个版本是使用Swift 2.2和Xcode 7.3创建的。 SwiftHTTP是v1.0.4。我看到iOS 8.3.0,9.3.0和9.3.1上的生产二进制文件崩溃了。这个问题在iPhone 6,6 Plus和6s上最为普遍(87%)。我试图使用Xcode Zombies(根据here)重现此问题,但它没有在控制台中显示任何message sent to deallocated instance消息。

在我对SwiftHTTP库的帮助程序类中执行PUT更新时发生崩溃。

错误

EXC_BAD_ACCESS KERN_INVALID_ADDRESS 0x0000000000000020 

堆栈跟踪

Thread : Crashed: com.apple.main-thread
0  libswiftCore.dylib             0x100d6d8f8 swift_unknownRelease + 24
1  SwiftHTTP                      0x100b07298    _TTSf4g_n___TTSg5Ps9AnyObject____TFE9SwiftHTTPSa11createPairsfGSqSS_GSaVS_8HTTPPair_ + 700
2  SwiftHTTP                      0x100b002f4 _TFE9SwiftHTTPVs10Dictionary11createPairsfGSqSS_GSaVS_8HTTPPair_ + 2000
3  SwiftHTTP                      0x100b00f90 _TTWu0_Rxs8HashablerGVs10Dictionaryxq__9SwiftHTTP21HTTPParameterProtocolS1_FS2_11createPairsfGSqSS_GSaVS1_8HTTPPair_ + 112
4  SwiftHTTP                      0x100b0178c _TFE9SwiftHTTPCSo19NSMutableURLRequest16appendParametersfzPS_21HTTPParameterProtocol_T_ + 396
5  SwiftHTTP                      0x100af14a4 _TTWV9SwiftHTTP23HTTPParameterSerializerS_21HTTPSerializeProtocolS_FS1_9serializefzTCSo19NSMutableURLRequest10parametersPS_21HTTPParameterProtocol__T_ + 40
6  SwiftHTTP                      0x100af8ccc _TTSf4gs_n_n_g_n_d___TZFC9SwiftHTTP4HTTP3NewfzTSS6methodOS_8HTTPVerb10parametersGSqPS_21HTTPParameterProtocol__7headersGSqGVs10DictionarySSSS__17requestSerializerPS_21HTTPSerializeProtocol__S0_ + 624
7  SwiftHTTP                      0x100af5758 _TZFC9SwiftHTTP4HTTP3PUTfzTSS10parametersGSqPS_21HTTPParameterProtocol__7headersGSqGVs10DictionarySSSS__17requestSerializerPS_21HTTPSerializeProtocol__S0_ + 76
8  MyApp                   0x1001274c0 SwiftHTTPUtilities.PUT(String, auth : String, params : [String : AnyObject]?, model : String, mode : APIUtilities.ApiRequestType, object : AnyObject?) -> () (SwiftHTTPUtilities.swift:52)
9  MyApp                   0x100154e90 APIUtilities.(apiRequest(String, mode : APIUtilities.ApiRequestType, object : AnyObject?) -> ()).(closure #3) (APIUtilities.swift:76)
10 MyApp                   0x100152f70 partial apply for APIUtilities.(apiRequest(String, mode : APIUtilities.ApiRequestType, object : AnyObject?) -> ()).(closure #3) (APIUtilities.swift)
11 libdispatch.dylib              0x18364d4bc _dispatch_call_block_and_release + 24
12 libdispatch.dylib              0x18364d47c _dispatch_client_callout + 16
13 libdispatch.dylib              0x183652b84 _dispatch_main_queue_callback_4CF + 1844
14 CoreFoundation                 0x183bb8dd8 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 12
15 CoreFoundation                 0x183bb6c40 __CFRunLoopRun + 1628
16 CoreFoundation                 0x183ae0d10 CFRunLoopRunSpecific + 384
17 GraphicsServices               0x1853c8088 GSEventRunModal + 180
18 UIKit                          0x188db5f70 UIApplicationMain + 204
19 MyApp                   0x10026d508 main (AppDelegate.swift:25)
20 libdispatch.dylib              0x18367e8b8 (Missing)

SwiftHTTPUtilities (这是一个与开源库SwiftHTTP交互的辅助类)

    func PUT(apiPath: String, auth: String, params: Dictionary<String,AnyObject>?,model: String, mode: APIUtilities.ApiRequestType, object: AnyObject?) {        
            do {
//SYMBOLICATED CRASH REPORT IDENTIFIES BELOW LINE FOR EXC_BAD_ACCESS
                let opt = try HTTP.PUT("\(apiPath)", parameters: params, headers: ["*removed*"])
                opt.start { response in
                    if let err = response.error {
//                        print("error: \(err.localizedDescription)")
                        self.delegate?.didGetServerResponse(false, response: nil, error: response.error, model: model, mode: mode, object: object)
                        return //also notify app of failure as needed
                    }
//                    print("opt finished: \(response.description)")
                    //print("data is: \(response.data)") access the response of the data with response.data

                    self.delegate?.didGetServerResponse(true, response: response.data, error: nil, model: model, mode: mode, object: object)
                }
            } catch let error {
//                print("got an error creating the request: \(error)")
                self.delegate?.didGetServerResponse(false, response: nil, error: nil, model: model, mode: mode, object: object)
            }

    }

1 个答案:

答案 0 :(得分:0)

此问题是由于SwiftHTTP默认为HTTPSerialisation。下面的行是如何指定JSON序列化,它修复了我的错误。

let opt = try HTTP.New("\(apiPath)", method: .PUT, parameters: params, headers: ["Authorization": "edit"], requestSerializer: JSONParameterSerializer())