mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-15 16:53:54 +08:00
Btrfs: fix double free in find_lock_delalloc_range
We need to NULL the cached_state after freeing it, otherwise we might free it again if find_delalloc_range doesn't find anything. Signed-off-by: Chris Mason <clm@fb.com> cc: stable@vger.kernel.org
This commit is contained in:
parent
58dfae6365
commit
7d78874273
@ -1693,6 +1693,7 @@ again:
|
|||||||
* shortening the size of the delalloc range we're searching
|
* shortening the size of the delalloc range we're searching
|
||||||
*/
|
*/
|
||||||
free_extent_state(cached_state);
|
free_extent_state(cached_state);
|
||||||
|
cached_state = NULL;
|
||||||
if (!loops) {
|
if (!loops) {
|
||||||
max_bytes = PAGE_CACHE_SIZE;
|
max_bytes = PAGE_CACHE_SIZE;
|
||||||
loops = 1;
|
loops = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user