This commit is contained in:
montulli 1998-06-25 20:58:07 +00:00
Родитель ac35bf05fb
Коммит 3b32a3fe4e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -114,7 +114,7 @@ net_remove_select(SelectType stType, PRFileDesc *prFD)
fd_set_size--;
if(count < fd_set_size)
memcpy(&poll_desc_array[count], &poll_desc_array[count+1], (fd_set_size - count) * sizeof(PRPollDesc));
memmove(&poll_desc_array[count], &poll_desc_array[count+1], (fd_set_size - count) * sizeof(PRPollDesc));
return;
}