mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 15:54:37 +01:00
Port r139 from branches/5.0:
From MySQL: Fix bug #15108 (mysqld crashes when innodb_log_file_size is set > 4GB).
This commit is contained in:
parent
111716520c
commit
c2083023c4
1 changed files with 2 additions and 2 deletions
|
@ -1239,7 +1239,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) {
|
||||
|
@ -1247,7 +1247,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
Reference in a new issue