commit | cddcd800189bc03745d576f913dc57692c6f439a | [log] [tgz] |
---|---|---|
author | Jeff Mahoney <jeffm@suse.com> | Mon Oct 03 23:23:23 2011 -0400 |
committer | David Sterba <dsterba@suse.cz> | Thu Mar 22 01:45:30 2012 +0100 |
tree | 361ed5f8c26a9820608de6d0a74f546729c90970 | |
parent | 43c04fb1b8c9f45d971bb53d7cbbcda8ee85716b [diff] |
btrfs: Fix kfree of member instead of structure Correctness fix: The kfree calls in the add_delayed_* functions free the node that's passed into it, but the node is a member of another structure. It works because it's always the first member of the containing structure, but it should really be using the containing structure itself. Signed-off-by: Jeff Mahoney <jeffm@suse.com>