Commit 20275fe7 authored by Marcus Lundblad's avatar Marcus Lundblad Committed by Youness Alaoui

Forgot to initialise the sent permissions hash table

parent 64c520c7
......@@ -227,6 +227,10 @@ nice_turn_socket_new (NiceAgent *agent, NiceAddress *addr,
g_hash_table_new_full (priv_nice_address_hash ,
(GEqualFunc) nice_address_equal ,
(GDestroyNotify) nice_address_free, NULL);
priv->sent_permissions =
g_hash_table_new_full (priv_nice_address_hash ,
(GEqualFunc) nice_address_equal ,
(GDestroyNotify) nice_address_free, NULL);
priv->send_data_queues =
g_hash_table_new_full (priv_nice_address_hash,
(GEqualFunc) nice_address_equal,
......
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