mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 08:02:07 +00:00
NFC: Forbid LLCP service name reusing
This patch fixes a typo and return the correct error when trying to bind 2 sockets to the same service name. Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
parent
cbbf472181
commit
8b7e8eda58
@ -121,8 +121,10 @@ static int llcp_sock_bind(struct socket *sock, struct sockaddr *addr, int alen)
|
||||
GFP_KERNEL);
|
||||
|
||||
llcp_sock->ssap = nfc_llcp_get_sdp_ssap(local, llcp_sock);
|
||||
if (llcp_sock->ssap == LLCP_MAX_SAP)
|
||||
if (llcp_sock->ssap == LLCP_SAP_MAX) {
|
||||
ret = -EADDRINUSE;
|
||||
goto put_dev;
|
||||
}
|
||||
|
||||
llcp_sock->reserved_ssap = llcp_sock->ssap;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user