mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 03:17:20 +02:00
Fix for bug #15108: mysqld crashes when innodb_log_file_size is set > 4G
sql/ha_innodb.cc: Fix for bug #15108: mysqld crashes when innodb_log_file_size is set > 4G - return 1 in case of error.
This commit is contained in:
parent
97bfd41fe1
commit
e72ec933d9
1 changed files with 2 additions and 2 deletions
|
|
@ -1218,7 +1218,7 @@ innobase_init(void)
|
|||
"innobase_buffer_pool_size can't be over 4GB"
|
||||
" on 32-bit systems");
|
||||
|
||||
DBUG_RETURN(0);
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (innobase_log_file_size > UINT_MAX32) {
|
||||
|
|
@ -1226,7 +1226,7 @@ innobase_init(void)
|
|||
"innobase_log_file_size can't be over 4GB"
|
||||
" on 32-bit systems");
|
||||
|
||||
DBUG_RETURN(0);
|
||||
goto error;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue