Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 213320
b: refs/heads/master
c: 1c1acab
h: refs/heads/master
v: v3
  • Loading branch information
Julia Lawall authored and James Bottomley committed Sep 5, 2010
1 parent e702436 commit 73a8e72
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 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: fc91961ce520ed7faa32aa01d0f7a82601bc4796
refs/heads/master: 1c1acab0367d88ad5da2b9db2efdf2699113ec88
4 changes: 3 additions & 1 deletion trunk/drivers/message/fusion/mptbase.c
Original file line number Diff line number Diff line change
Expand Up @@ -5945,8 +5945,10 @@ mpt_findImVolumes(MPT_ADAPTER *ioc)
goto out;

mem = kmalloc(iocpage2sz, GFP_KERNEL);
if (!mem)
if (!mem) {
rc = -ENOMEM;
goto out;
}

memcpy(mem, (u8 *)pIoc2, iocpage2sz);
ioc->raid_data.pIocPg2 = (IOCPage2_t *) mem;
Expand Down

0 comments on commit 73a8e72

Please sign in to comment.