mirror of
https://github.com/MariaDB/server.git
synced 2026-04-30 12:15:32 +02:00
A fix for an obvious bug in hash generating proram.
This commit is contained in:
parent
ec6bd7a49a
commit
39dbf6cb9b
1 changed files with 1 additions and 1 deletions
|
|
@ -274,7 +274,7 @@ void print_arrays()
|
|||
function_plus,function_mod);
|
||||
|
||||
int *prva= (int*) my_alloca(sizeof(int)*function_mod);
|
||||
for (i=0 ; i <= function_mod; i++)
|
||||
for (i=0 ; i < function_mod; i++)
|
||||
prva[i]= max_symbol;
|
||||
|
||||
for (i=0;i<size;i++)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue