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
9f01da42
Commit
9f01da42
authored
Jun 16, 2016
by
Sandrine Avakian
Browse files
fix warning on centOs
parent
a82a1aca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
daemon/daemon.cc
daemon/daemon.cc
+1
-1
No files found.
daemon/daemon.cc
View file @
9f01da42
...
...
@@ -385,7 +385,7 @@ LinphoneProxyConfig *Daemon::findProxy(int id) {
LinphoneAuthInfo
*
Daemon
::
findAuthInfo
(
int
id
)
{
const
MSList
*
elem
=
linphone_core_get_auth_info_list
(
mLc
);
if
(
elem
==
NULL
||
id
<
1
||
id
>
ms_list_size
(
elem
))
{
if
(
elem
==
NULL
||
id
<
1
||
(
unsigned
int
)
id
>
ms_list_size
(
elem
))
{
return
NULL
;
}
while
(
id
>
1
)
{
...
...
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