mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Fixed the groupchat bug in a smarter way.
This commit is contained in:
parent
fdf1b6932b
commit
7838973ef3
|
@ -787,7 +787,10 @@ static void del_dead_peers(Group_Chat *chat)
|
|||
delpeer(chat, i);
|
||||
}
|
||||
|
||||
if (chat->group != NULL && chat->group[i].deleted) {
|
||||
if (chat->group == NULL || i >= chat->numpeers)
|
||||
break;
|
||||
|
||||
if (chat->group[i].deleted) {
|
||||
if (is_timeout(chat->group[i].deleted_time, DEL_PEER_DELAY))
|
||||
delpeer(chat, i);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user