Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
48510f30
Commit
48510f30
authored
Dec 04, 2015
by
Sylvain Berfini
🐮
Browse files
Fixed copy/paste mistake
parent
7b04214d
Changes
1
Hide whitespace changes
Inline
Side-by-side
coreapi/linphonecore_jni.cc
View file @
48510f30
...
...
@@ -1119,7 +1119,7 @@ jobject getFriend(JNIEnv *env, LinphoneFriend *lfriend){
jobj
=
env
->
NewLocalRef
((
jobject
)
up
);
if
(
jobj
==
NULL
){
jobj
=
env
->
NewObject
(
lcData
->
friendClass
,
lcData
->
friendCtrId
,
lcData
->
(
jlong
)
lfriend
);
jobj
=
env
->
NewObject
(
lcData
->
friendClass
,
lcData
->
friendCtrId
,
(
jlong
)
lfriend
);
linphone_friend_set_user_data
(
lfriend
,(
void
*
)
env
->
NewWeakGlobalRef
(
jobj
));
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment