mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-19 10:53:58 +00:00
select: stop doing zero-sized memsets
Approved by: re (kib)
This commit is contained in:
parent
18c00da806
commit
d6fda03a64
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=338855
@ -1031,8 +1031,9 @@ kern_select(struct thread *td, int nd, fd_set *fd_in, fd_set *fd_ou,
|
||||
error = copyin(name, ibits[x], ncpubytes); \
|
||||
if (error != 0) \
|
||||
goto done; \
|
||||
bzero((char *)ibits[x] + ncpubytes, \
|
||||
ncpbytes - ncpubytes); \
|
||||
if (ncpbytes != ncpubytes) \
|
||||
bzero((char *)ibits[x] + ncpubytes, \
|
||||
ncpbytes - ncpubytes); \
|
||||
} \
|
||||
} while (0)
|
||||
getbits(fd_in, 0);
|
||||
|
Loading…
Reference in New Issue
Block a user