0

我的应用程序使用相互身份验证连接到我的服务器,因此我有一个包含证书的 .p12 文件。一切都按预期的方式工作,但是当我使用 Instruments 分析我的应用程序时,它会在此行检测到内存泄漏:

if([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodClientCertificate]){

    NSData* p12data = [NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"client" ofType:@"p12"]];

    CFArrayRef itemsCFArray = nil;

    NSDictionary* dico = [NSDictionary dictionaryWithObjectsAndKeys:@"password",kSecImportExportPassphrase, nil];
    // MEMORY LEAK just below
    OSStatus check = SecPKCS12Import((__bridge CFDataRef)p12data, (__bridge CFDictionaryRef)dico, &itemsCFArray); 

    if(check != noErr){
        NSLog(@"Error importing PKCS");
    }

    NSArray* items = (__bridge NSArray*)itemsCFArray;


    SecIdentityRef identityRef = (__bridge SecIdentityRef)[[items objectAtIndex:0] objectForKey:(__bridge id)kSecImportItemIdentity];

    NSURLCredential* credential = [NSURLCredential credentialWithIdentity:identityRef certificates:nil persistence:NSURLCredentialPersistenceNone];

    [challenge.sender useCredential:credential forAuthenticationChallenge:challenge];

}

我尝试改用 CFDictionaryRef,但它不能解决错误。

我发现有人有同样的问题,但他的解决方案是 ios4,我正在使用 ios5(实际上,我已经在做同样的事情):http ://www.ipup.fr/forum/viewtopic.php?id =2855(法语,对不起)

我该如何解决这个问题?Apple 会因为内存泄漏而拒绝我的应用程序吗?

4

1 回答 1

0

我不认为问题出在字典上,itemsCFArray 似乎被泄露了。SecPKCS12Import 将 CF 引用传回 itemsCFArray,当您使用完其中的对象后,您需要 CFRelease。

创建凭证后尝试调用 CFRelease(itemsCFArray)。

于 2012-08-07T19:21:37.863 回答