Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Olivier Crête
libnice
Commits
61dfce55
Commit
61dfce55
authored
Nov 19, 2009
by
Youness Alaoui
Browse files
in order to please coverity, do not have the return at the end of the function never reachable
parent
83bb8d9a
Changes
1
Hide whitespace changes
Inline
Side-by-side
stun/usages/bind.c
View file @
61dfce55
...
...
@@ -518,11 +518,11 @@ StunUsageBindReturn stun_usage_bind_run (const struct sockaddr *srv,
}
else
if
(
bind_ret
==
STUN_USAGE_BIND_RETURN_INVALID
)
{
ret
=
STUN_USAGE_TRANS_RETURN_RETRY
;
}
else
{
return
bind_ret
;
break
;
}
}
}
while
(
ret
==
STUN_USAGE_TRANS_RETURN_RETRY
);
return
STUN_USAGE_BIND_RETURN_SUCCESS
;
return
bind_ret
;
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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