使用 Linphone 在 lpConfigStringForKey 上应用程序崩溃

App crashing on lpConfigStringForKey with Linphone

我有一个使用 Linphone 库的 iOS 网络电话应用程序。以前该应用程序 运行 成功,但我刚刚升级了 linphone 框架和文件:LinphoneManager.h/.m 和 Utils.h/.m 来自 linphone-iphone.

从 linphone-sdk 的新版本添加更新的框架并更新 LinphoneManager 后。h/m 我 运行 在应用程序启动时崩溃。一旦应用程序点击

,就会发生崩溃
lp_config_get_string(_configDb, [section UTF8String], [key UTF8String], NULL);

在 lpConfigStringForKey() 中。

我尝试删除和阅读框架并检查 LinphoneManager.h/.m 代码,但我没有找到解决方案,也没有在 linphone-iphone 问题中找到任何与我的相似的实例.

当它遇到以下代码块时发生崩溃

- (NSString *)lpConfigStringForKey:(NSString *)key inSection:(NSString *)section withDefault:(NSString *)defaultValue {
    if (!key) {
        return defaultValue;
    }
    const char *value = lp_config_get_string(_configDb, [section UTF8String], [key UTF8String], NULL);
    return value ? [NSString stringWithUTF8String:value] : defaultValue;
}

这是LinphoneManager.m中的标准函数,我没有修改。

具体来说,崩溃来自linphone框架中的这个函数:

lp_config_get_string(_configDb, [section UTF8String], [key UTF8String], NULL);

我已经记录了应用程序崩溃时的 key、section 和 defaultValue 变量。他们是:

2019-07-11 10:58:51.033849-0500 myApp[15512:511705] KEY: debugenable_preference
2019-07-11 10:58:51.033964-0500 myApp[15512:511705] SECTION: app
2019-07-11 10:58:51.034040-0500 myApp[15512:511705] DEFAULT: (null)

lp_config_get_string 指向 linphone_config_get_string 的 header 评论如下:

/**
 * Retrieves a configuration item as a string, given its section, key, and default value.
 *
 * The default value string is returned if the config item isn't found.
**/
LINPHONE_PUBLIC const char *linphone_config_get_string(const LinphoneConfig *lpconfig, const char *section, const char *key, const char *default_string);

这是错误和崩溃的屏幕截图: Crash stack trace and error

我想我在添加框架时遗漏了一些东西,但我还没有找到它。

谢谢

我发现了问题。初始化函数中缺少以下内容:

    [self renameDefaultSettings];
    [self copyDefaultSettings];
    [self overrideDefaultSettings];

导致 lp_config

出现一些问题