mirror of https://github.com/FreeRDP/FreeRDP
[coverity] 1047683 Unchecked return value from library
This commit is contained in:
parent
68f0e0a325
commit
f0cc78fe1a
|
@ -256,7 +256,14 @@ static BOOL freerdp_listener_open_local(freerdp_listener* instance, const char*
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
fcntl(sockfd, F_SETFL, O_NONBLOCK);
|
||||
int rc = fcntl(sockfd, F_SETFL, O_NONBLOCK);
|
||||
if (rc != 0)
|
||||
{
|
||||
WLog_ERR(TAG, "fcntl(sockfd, F_SETFL, O_NONBLOCK)");
|
||||
closesocket((SOCKET)sockfd);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
addr.sun_family = AF_UNIX;
|
||||
strncpy(addr.sun_path, path, sizeof(addr.sun_path) - 1);
|
||||
unlink(path);
|
||||
|
|
Loading…
Reference in New Issue