From: Dan Carpenter Date: Mon, 24 Aug 2020 08:58:12 +0000 (+0300) Subject: afs: Fix a use after free in afs_xattr_get_acl() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=248c944e2159de4868bef558feea40214aaf8464;p=linux.git afs: Fix a use after free in afs_xattr_get_acl() The "op" pointer is freed earlier when we call afs_put_operation(). Fixes: e49c7b2f6de7 ("afs: Build an abstraction around an "operation" concept") Signed-off-by: Dan Carpenter Signed-off-by: David Howells cc: Colin Ian King --- diff --git a/fs/afs/xattr.c b/fs/afs/xattr.c index 84f3c4f575318..38884d6c57cdc 100644 --- a/fs/afs/xattr.c +++ b/fs/afs/xattr.c @@ -85,7 +85,7 @@ static int afs_xattr_get_acl(const struct xattr_handler *handler, if (acl->size <= size) memcpy(buffer, acl->data, acl->size); else - op->error = -ERANGE; + ret = -ERANGE; } }