Commit f6fe8c10 authored by Kai Vehmanen's avatar Kai Vehmanen

Warn about a rare corner case that could be triggered by clients.

darcs-hash:20071010134647-77cd4-12e36861ccd861ea2ab46691375ec3082c4bca4f.gz
parent 7f7269fa
......@@ -996,8 +996,11 @@ nice_agent_set_remote_candidates (NiceAgent *agent, guint stream_id, guint compo
added = -1;
}
if (added > 0)
conn_check_schedule_next (agent);
if (added > 0) {
gboolean res = conn_check_schedule_next (agent);
if (res != TRUE)
g_debug ("Warning: unable to schedule any conn checks!");
}
return added;
}
......
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