Commit 55ae9288 authored by Youness Alaoui's avatar Youness Alaoui

Fix compilation error.. uninitialized var in test-thread

parent 2fba2234
......@@ -121,7 +121,7 @@ static void cb_nice_recv (NiceAgent *agent, guint stream_id, guint component_id,
{
g_warning ("test-thread:%s: %p %d", G_STRFUNC, user_data, len);
gchar data[10];
gint *count;
gint *count = NULL;
if (GPOINTER_TO_UINT (user_data) == 1)
count = &global_lagent_cands;
......
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