dect
/
linux-2.6
Archived
13
0
Fork 0

ceph: fix potential double free

We re-run the loop but we don't re-set the attrs pointer back to NULL.

Signed-off-by: Alan Cox <alan@linux.intel.com>
Reviewed-by: Alex Elder <elder@inktank.com>
This commit is contained in:
Alan Cox 2012-07-20 08:18:36 -05:00 committed by Sage Weil
parent 85effe183d
commit 21ec6ffa46
1 changed files with 1 additions and 0 deletions

View File

@ -457,6 +457,7 @@ start:
for (i = 0; i < numattr; i++)
kfree(xattrs[i]);
kfree(xattrs);
xattrs = NULL;
goto start;
}
err = -EIO;