diff options
author | Felix Blyakher <felixb@sgi.com> | 2009-06-11 18:07:28 -0400 |
---|---|---|
committer | Felix Blyakher <felixb@sgi.com> | 2009-06-12 11:26:52 -0400 |
commit | 7747a0b0af5976ba3828796b4f7a7adc3bb76dbd (patch) | |
tree | cf56450f057c3045341fe50c4e865466ee8a4522 /fs/xfs | |
parent | 35fd035968de4f674b9d62ee7b1d80ab7a50c384 (diff) |
xfs: fix freeing memory in xfs_getbmap()
Regression from commit 28e211700a81b0a934b6c7a4b8e7dda843634d2f.
Need to free temporary buffer allocated in xfs_getbmap().
Signed-off-by: Felix Blyakher <felixb@sgi.com>
Signed-off-by: Hedi Berriche <hedi@sgi.com>
Reported-by: Justin Piszcz <jpiszcz@lucidpixels.com>
Reviewed-by: Eric Sandeen <sandeen@sandeen.net>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/xfs_bmap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/xfs_bmap.c b/fs/xfs/xfs_bmap.c index 4b0f6efb046c..7928b9983c1d 100644 --- a/fs/xfs/xfs_bmap.c +++ b/fs/xfs/xfs_bmap.c | |||
@@ -6086,6 +6086,7 @@ xfs_getbmap( | |||
6086 | break; | 6086 | break; |
6087 | } | 6087 | } |
6088 | 6088 | ||
6089 | kmem_free(out); | ||
6089 | return error; | 6090 | return error; |
6090 | } | 6091 | } |
6091 | 6092 | ||