1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Bug#18463911 : SERVER CRASHES ON CREATING A TEMP TABLE WITH

CERTAIN MAX_HEAP_TABLE_SIZE VALUES

Followup patch to fix failure on Window machine.
This commit is contained in:
Arun Kuruvila
2014-06-26 10:08:55 +05:30
parent cdf72d51c6
commit 76d3e3bccb
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ int hp_get_new_block(HP_BLOCK *block, size_t *alloc_length)
This doesn't add much overhead - with current values of sizeof(HP_PTRS)
and my_default_record_cache_size we get about 1/128 unused memory.
*/
*alloc_length= sizeof(HP_PTRS)* i + (ulong) block->records_in_block *
*alloc_length= sizeof(HP_PTRS)* i + (ulonglong) block->records_in_block *
block->recbuffer;
if (!(root=(HP_PTRS*) my_malloc(*alloc_length,MYF(MY_WME))))
return 1;