Groupchat crashing bug fixed.

This commit is contained in:
Jman012 2014-02-19 09:02:10 -08:00
parent bd973152cc
commit fdf1b6932b

View File

@ -787,7 +787,7 @@ static void del_dead_peers(Group_Chat *chat)
delpeer(chat, i);
}
if (chat->group[i].deleted) {
if (chat->group != NULL && chat->group[i].deleted) {
if (is_timeout(chat->group[i].deleted_time, DEL_PEER_DELAY))
delpeer(chat, i);
}