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
d916e63a
Commit
d916e63a
authored
Mar 29, 2014
by
Olivier Crête
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
turn: Don't access list node after freeing it
parent
5454a886
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
socket/turn.c
socket/turn.c
+5
-0
No files found.
socket/turn.c
View file @
d916e63a
...
@@ -493,8 +493,13 @@ priv_remove_peer_from_list (GList *list, const NiceAddress *peer)
...
@@ -493,8 +493,13 @@ priv_remove_peer_from_list (GList *list, const NiceAddress *peer)
NiceAddress
*
address
=
(
NiceAddress
*
)
iter
->
data
;
NiceAddress
*
address
=
(
NiceAddress
*
)
iter
->
data
;
if
(
nice_address_equal
(
address
,
peer
))
{
if
(
nice_address_equal
(
address
,
peer
))
{
GList
*
prev
=
iter
->
prev
;
nice_address_free
(
address
);
nice_address_free
(
address
);
list
=
g_list_delete_link
(
list
,
iter
);
list
=
g_list_delete_link
(
list
,
iter
);
iter
=
prev
;
if
(
iter
)
iter
=
list
;
}
}
}
}
...
...
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