mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 07:31:45 +00:00
afs: Fix a use after free in afs_xattr_get_acl()
The "op" pointer is freed earlier when we call afs_put_operation().
Fixes: e49c7b2f6d
("afs: Build an abstraction around an "operation" concept")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: David Howells <dhowells@redhat.com>
cc: Colin Ian King <colin.king@canonical.com>
This commit is contained in:
parent
acc080d15d
commit
248c944e21
@ -85,7 +85,7 @@ static int afs_xattr_get_acl(const struct xattr_handler *handler,
|
|||||||
if (acl->size <= size)
|
if (acl->size <= size)
|
||||||
memcpy(buffer, acl->data, acl->size);
|
memcpy(buffer, acl->data, acl->size);
|
||||||
else
|
else
|
||||||
op->error = -ERANGE;
|
ret = -ERANGE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user