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
13c69615
Commit
13c69615
authored
Nov 13, 2009
by
Youness Alaoui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oups, possible bug here. reference priv->current_binding_msg before freeing it
parent
d77ea986
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
socket/turn.c
socket/turn.c
+3
-2
No files found.
socket/turn.c
View file @
13c69615
...
@@ -613,13 +613,14 @@ priv_retransmissions_tick_unlocked (TurnPriv *priv)
...
@@ -613,13 +613,14 @@ priv_retransmissions_tick_unlocked (TurnPriv *priv)
/* Time out */
/* Time out */
StunTransactionId
id
;
StunTransactionId
id
;
stun_message_id
(
&
priv
->
current_binding_msg
->
message
,
id
);
stun_agent_forget_transaction
(
&
priv
->
agent
,
id
);
g_free
(
priv
->
current_binding
);
g_free
(
priv
->
current_binding
);
priv
->
current_binding
=
NULL
;
priv
->
current_binding
=
NULL
;
g_free
(
priv
->
current_binding_msg
);
g_free
(
priv
->
current_binding_msg
);
priv
->
current_binding_msg
=
NULL
;
priv
->
current_binding_msg
=
NULL
;
stun_message_id
(
&
priv
->
current_binding_msg
->
message
,
id
);
stun_agent_forget_transaction
(
&
priv
->
agent
,
id
);
priv_process_pending_bindings
(
priv
);
priv_process_pending_bindings
(
priv
);
break
;
break
;
...
...
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