forked from Minki/linux
net/irda: add missing error path release_sock call
This makes sure that release_sock is called for all error conditions in irda_getsockopt. Signed-off-by: Kees Cook <keescook@chromium.org> Reported-by: Brad Spengler <spender@grsecurity.net> Cc: stable@vger.kernel.org Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
fa90b077d7
commit
896ee0eee6
@ -2583,8 +2583,10 @@ bed:
|
||||
NULL, NULL, NULL);
|
||||
|
||||
/* Check if the we got some results */
|
||||
if (!self->cachedaddr)
|
||||
return -EAGAIN; /* Didn't find any devices */
|
||||
if (!self->cachedaddr) {
|
||||
err = -EAGAIN; /* Didn't find any devices */
|
||||
goto out;
|
||||
}
|
||||
daddr = self->cachedaddr;
|
||||
/* Cleanup */
|
||||
self->cachedaddr = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user