Skip to content
Permalink
Browse files
MDEV-23456: After-merge fix
In merge commit 3421223
buf_page_create() passed the wrong parameter to
one of the buf_LRU_block_free_non_file_page() calls.
  • Loading branch information
dr-m committed Sep 24, 2020
1 parent e57c116 commit 1adb537
Showing 1 changed file with 1 addition and 1 deletion.
@@ -3860,7 +3860,7 @@ buf_page_create(fil_space_t *space, uint32_t offset,
if (block->page.io_fix() != BUF_IO_NONE)
{
hash_lock->write_unlock();
buf_LRU_block_free_non_file_page(block);
buf_LRU_block_free_non_file_page(free_block);
mutex_exit(&buf_pool.mutex);
goto loop;
}

0 comments on commit 1adb537

Please sign in to comment.