Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 310960
b: refs/heads/master
c: 0439f31
h: refs/heads/master
v: v3
  • Loading branch information
Dan Carpenter authored and Trond Myklebust committed Jun 12, 2012
1 parent 66b4a5f commit 986597e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 92123e068efa310b09e9943ac1cfd10ff6b6d2e4
refs/heads/master: 0439f31c35d1da0b28988b308ea455e38e6a350d
6 changes: 3 additions & 3 deletions trunk/fs/nfs/callback_xdr.c
Original file line number Diff line number Diff line change
Expand Up @@ -455,9 +455,9 @@ static __be32 decode_cb_sequence_args(struct svc_rqst *rqstp,
args->csa_nrclists = ntohl(*p++);
args->csa_rclists = NULL;
if (args->csa_nrclists) {
args->csa_rclists = kmalloc(args->csa_nrclists *
sizeof(*args->csa_rclists),
GFP_KERNEL);
args->csa_rclists = kmalloc_array(args->csa_nrclists,
sizeof(*args->csa_rclists),
GFP_KERNEL);
if (unlikely(args->csa_rclists == NULL))
goto out;

Expand Down

0 comments on commit 986597e

Please sign in to comment.