wl_resource_find_for_client is O(n²)
wl_resource_find_for_client is O(n2) due to misusing wl_list_for_each
. It should use a balanced tree or hash table instead.
Due to an influx of spam, we have had to impose restrictions on new accounts. Please see this wiki page for instructions on how to get full permissions. Sorry for the inconvenience.
wl_resource_find_for_client is O(n2) due to misusing wl_list_for_each
. It should use a balanced tree or hash table instead.