forked from mirrors/linphone-iphone
Fix loadXmlFile in Linphone JNI
This commit is contained in:
parent
c9ada30c5a
commit
1a761ebe80
1 changed files with 1 additions and 1 deletions
|
|
@ -6022,7 +6022,7 @@ extern "C" void Java_org_linphone_core_LpConfigImpl_sync(JNIEnv *env, jobject th
|
|||
extern "C" void Java_org_linphone_core_LpConfigImpl_loadXmlFile(JNIEnv *env, jobject thiz, jlong lpc, jstring jfilename) {
|
||||
const char *filename = GetStringUTFChars(env, jfilename);
|
||||
LpConfig *lp = (LpConfig *)lpc;
|
||||
linphone_config_load_from_xml_file(lp, filename, NULL, NULL);
|
||||
linphone_config_load_from_xml_file(lp, filename);
|
||||
ReleaseStringUTFChars(env, jfilename, filename);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue