Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libnice
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
libnice
Commits
714f1ee6
Commit
714f1ee6
authored
May 20, 2010
by
Olivier Crête
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
discovery: Remove useless checks from discovery_add_reflexive_candidate
parent
231943d2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
24 deletions
+23
-24
agent/discovery.c
agent/discovery.c
+23
-24
No files found.
agent/discovery.c
View file @
714f1ee6
...
...
@@ -542,7 +542,7 @@ discovery_add_server_reflexive_candidate (
return
NULL
;
candidate
=
nice_candidate_new
(
NICE_CANDIDATE_TYPE_SERVER_REFLEXIVE
);
if
(
candidate
)
{
if
(
agent
->
compatibility
==
NICE_COMPATIBILITY_GOOGLE
)
{
candidate
->
priority
=
nice_candidate_jingle_priority
(
candidate
);
}
else
if
(
agent
->
compatibility
==
NICE_COMPATIBILITY_MSN
)
{
...
...
@@ -567,10 +567,9 @@ discovery_add_server_reflexive_candidate (
agent_signal_new_candidate
(
agent
,
candidate
);
}
else
{
/* error: memory allocation, or duplicate candidatet
*/
/* error: duplicate candidate
*/
nice_candidate_free
(
candidate
),
candidate
=
NULL
;
}
}
return
candidate
;
}
...
...
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