Commit ac8eee01 authored by Youness Alaoui's avatar Youness Alaoui

Don't forget to free the username/password

parent a74ceec9
...@@ -219,6 +219,8 @@ static void ...@@ -219,6 +219,8 @@ static void
socket_close (NiceUDPSocket *sock) socket_close (NiceUDPSocket *sock)
{ {
turn_priv *priv = (turn_priv *) sock->priv; turn_priv *priv = (turn_priv *) sock->priv;
g_free (priv->username);
g_free (priv->password);
g_free (priv); g_free (priv);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment