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
74c44f6c
Commit
74c44f6c
authored
Dec 18, 2014
by
Simon Morlat
Browse files
User pointer must remain the property of the user.
parent
8f633b21
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
coreapi/linphonecore.c
coreapi/linphonecore.c
+0
-6
No files found.
coreapi/linphonecore.c
View file @
74c44f6c
...
...
@@ -7087,9 +7087,6 @@ LinphoneCoreVTable *linphone_core_v_table_new() {
}
void
linphone_core_v_table_set_user_data
(
LinphoneCoreVTable
*
table
,
void
*
data
)
{
if
(
table
->
user_data
)
{
ms_free
(
table
->
user_data
);
}
table
->
user_data
=
data
;
}
...
...
@@ -7098,9 +7095,6 @@ void* linphone_core_v_table_get_user_data(LinphoneCoreVTable *table) {
}
void
linphone_core_v_table_destroy
(
LinphoneCoreVTable
*
table
)
{
if
(
table
->
user_data
)
{
ms_free
(
table
->
user_data
);
}
ms_free
(
table
);
}
...
...
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