fcntl: don't leak fd reference when fixup_compat_flock fails
Currently we just return err here, but we need to put the fd reference
first.
Fixes: 94073ad77f
(fs/locks: don't mess with the address limit in compat_fcntl64)
Signed-off-by: Jeff Layton <jlayton@redhat.com>
This commit is contained in:
parent
4e897f5bb9
commit
9280a601e6
|
@ -632,9 +632,8 @@ COMPAT_SYSCALL_DEFINE3(fcntl64, unsigned int, fd, unsigned int, cmd,
|
||||||
if (err)
|
if (err)
|
||||||
break;
|
break;
|
||||||
err = fixup_compat_flock(&flock);
|
err = fixup_compat_flock(&flock);
|
||||||
if (err)
|
if (!err)
|
||||||
return err;
|
err = put_compat_flock(&flock, compat_ptr(arg));
|
||||||
err = put_compat_flock(&flock, compat_ptr(arg));
|
|
||||||
break;
|
break;
|
||||||
case F_GETLK64:
|
case F_GETLK64:
|
||||||
case F_OFD_GETLK:
|
case F_OFD_GETLK:
|
||||||
|
|
Loading…
Reference in New Issue