1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Restore fix for bug #15108 (by ramil) erroneously erased

by applying innodb-5.0-ss115 snapshot.
This commit is contained in:
aivanov@mysql.com
2006-01-16 15:23:02 +03:00
parent 0efdc24a99
commit 442dcf8be7

View File

@@ -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;
}
}