Commit af39ee00 authored by unknown's avatar unknown

mem0pool.c:

  Fix an assertion failure in 64-bit computers if UNIV_MEM_DEBUG is defined


innobase/mem/mem0pool.c:
  Fix an assertion failure in 64-bit computers if UNIV_MEM_DEBUG is defined
parent b4ecba65
......@@ -597,8 +597,8 @@ mem_pool_validate(
}
}
ut_a(free + pool->reserved == pool->size
- (pool->size % MEM_AREA_MIN_SIZE));
ut_a(free + pool->reserved == pool->size);
mutex_exit(&(pool->mutex));
return(TRUE);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment