Commit af39ee00 authored by unknown's avatar unknown
Browse files

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);