mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 03:28:07 +00:00
Fix some JNI unref methods' name
This commit is contained in:
parent
f206446804
commit
7bd469baa0
1 changed files with 2 additions and 2 deletions
|
|
@ -7645,7 +7645,7 @@ extern "C" jlong Java_org_linphone_core_LinphoneXmlRpcRequestImpl_newLinphoneXml
|
|||
return (jlong) request;
|
||||
}
|
||||
|
||||
extern "C" void Java_org_linphone_core_LinphoneXmlRpcRequestImpl_finalize(JNIEnv *env, jobject thiz, jlong ptr) {
|
||||
extern "C" void Java_org_linphone_core_LinphoneXmlRpcRequestImpl_unref(JNIEnv *env, jobject thiz, jlong ptr) {
|
||||
LinphoneXmlRpcRequest *request = (LinphoneXmlRpcRequest *)ptr;
|
||||
linphone_xml_rpc_request_set_user_data(request, NULL);
|
||||
linphone_xml_rpc_request_unref(request);
|
||||
|
|
@ -7704,7 +7704,7 @@ extern "C" jlong Java_org_linphone_core_LinphoneXmlRpcSessionImpl_newLinphoneXml
|
|||
return (jlong) session;
|
||||
}
|
||||
|
||||
extern "C" void Java_org_linphone_core_LinphoneXmlRpcSessionImpl_finalize(JNIEnv *env, jobject thiz, jlong ptr) {
|
||||
extern "C" void Java_org_linphone_core_LinphoneXmlRpcSessionImpl_unref(JNIEnv *env, jobject thiz, jlong ptr) {
|
||||
LinphoneXmlRpcSession *session = (LinphoneXmlRpcSession *)ptr;
|
||||
linphone_xml_rpc_session_set_user_data(session, NULL);
|
||||
linphone_xml_rpc_session_unref(session);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue