LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] Fix size argument to memset call in nfsacl_encode
@ 2011-02-03 19:15 Jesper Juhl
  2011-02-03 19:28 ` Trond Myklebust
  0 siblings, 1 reply; 10+ messages in thread
From: Jesper Juhl @ 2011-02-03 19:15 UTC (permalink / raw)
  To: linux-nfs; +Cc: linux-kernel, Trond Myklebust, Neil Brown, bfields

We want to give memset() the sizeof(struct posix_acl), not
sizeof(struct posix_acl *).

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
---
 nfsacl.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/nfs_common/nfsacl.c b/fs/nfs_common/nfsacl.c
index 84c27d6..bc6d81b 100644
--- a/fs/nfs_common/nfsacl.c
+++ b/fs/nfs_common/nfsacl.c
@@ -117,7 +117,7 @@ int nfsacl_encode(struct xdr_buf *buf, unsigned int base, struct inode *inode,
 		 * invoked in contexts where a memory allocation failure is
 		 * fatal.  Fortunately this fake ACL is small enough to
 		 * construct on the stack. */
-		memset(acl2, 0, sizeof(acl2));
+		memset(acl2, 0, sizeof(*acl2));
 		posix_acl_init(acl2, 4);
 
 		/* Insert entries in canonical order: other orders seem
-- 
Jesper Juhl <jj@chaosbits.net>            http://www.chaosbits.net/
Don't top-post http://www.catb.org/~esr/jargon/html/T/top-post.html
Plain text mails only, please.


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2011-02-23 22:28 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-03 19:15 [PATCH] Fix size argument to memset call in nfsacl_encode Jesper Juhl
2011-02-03 19:28 ` Trond Myklebust
2011-02-03 19:41   ` Jesper Juhl
2011-02-03 20:00     ` Chuck Lever
2011-02-03 20:06       ` Trond Myklebust
2011-02-03 20:29         ` Chuck Lever
2011-02-03 21:55           ` Trond Myklebust
2011-02-23 22:26             ` Jesper Juhl
2011-02-23 22:27               ` Jesper Juhl
2011-02-04  0:37     ` Milton Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).