TokTok / toxic

An ncurses-based Tox client
https://toktok.ltd/
GNU General Public License v3.0
27 stars 4 forks source link

fix: race condition when drawing group/conference peer list #376

Closed JFreegman closed 2 months ago

JFreegman commented 2 months ago

The number of peers can change between and within iterations leading to an out of bounds index. Now we just lock the entire loop, which is less efficient but necessary.


This change is Reviewable