If current_time is < collision_timeout, we get an uint64 underflow, and
the check will trigger prematurely.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/817>
RTPConflictingAddress *known_conflict = item->data;
GList *next_item = g_list_next (item);
- if (known_conflict->time < current_time - collision_timeout) {
+ if (known_conflict->time + collision_timeout < current_time) {
gchar *buf;
conflicting_addresses = g_list_delete_link (conflicting_addresses, item);