Commit cb7df7eb 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 09cd63cb
...@@ -597,8 +597,8 @@ mem_pool_validate( ...@@ -597,8 +597,8 @@ mem_pool_validate(
} }
} }
ut_a(free + pool->reserved == pool->size ut_a(free + pool->reserved == pool->size);
- (pool->size % MEM_AREA_MIN_SIZE));
mutex_exit(&(pool->mutex)); mutex_exit(&(pool->mutex));
return(TRUE); 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