Bugzilla bug #17223: fixed an error found when I compiled on Mac.

This commit is contained in:
wtc%netscape.com 2000-07-31 22:40:12 +00:00
Родитель f85620c224
Коммит e357ca143e
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -633,8 +633,8 @@ PRIntervalTime timeout)
#ifdef _PR_HAVE_PEEK_BUFFER
if ((PR_MSG_PEEK == flags) && _PR_FD_NEED_EMULATE_MSG_PEEK(fd)) {
if (rv > 0) {
memcpy(fd->secret->peekBuffer, buf, me->md.blocked_io_bytes);
fd->secret->peekBytes = me->md.blocked_io_bytes;
memcpy(fd->secret->peekBuffer, buf, rv);
fd->secret->peekBytes = rv;
}
}
#endif