viktor zii
unread,Jun 25, 2019, 11:11:44 AM6/25/19You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Hi,
I found 2 build problems of NSPR 4.21 with VS2010 x64.
nspr\pr\src\io\prsocket.c
1. Ln. 340 (compilation error)
PR_ASSERT(fd->secret->nonblocking);
PRInt32 rvSent;
should be changed to
PRInt32 rvSent;
PR_ASSERT(fd->secret->nonblocking);
2. Ln. 1239 (compilation warning)
out_flags = PR_POLL_WRITE;
should be changed to
*out_flags = PR_POLL_WRITE;
BRs.