mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-24 01:57:06 +01:00
Check return value of listen().
Reviewed by: emax Approved by: re (kensmith)
This commit is contained in:
parent
b979e69bf6
commit
817e1ec901
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=172142
@ -211,7 +211,8 @@ main(int argc, char *argv[])
|
||||
if (bind(acceptsock, (struct sockaddr *)&ma, sizeof(ma)) < 0)
|
||||
err(1, "Could not bind socket -- channel %d in use?",
|
||||
channel);
|
||||
listen(acceptsock, 10);
|
||||
if (listen(acceptsock, 10) != 0)
|
||||
err(1, "Could not listen on socket");
|
||||
|
||||
ss = sdp_open_local(NULL);
|
||||
if (ss == NULL)
|
||||
|
Loading…
Reference in New Issue
Block a user