Below is the list of changes that have just been committed into a local
5.0 repository of ram. When ram does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet
1.1999 05/11/24 13:04:05 ramil@stripped +1 -0
Fix for bug #15108: mysqld crashes when innodb_log_file_size is set > 4G
sql/ha_innodb.cc
1.279 05/11/24 13:03:56 ramil@stripped +2 -2
Fix for bug #15108: mysqld crashes when innodb_log_file_size is set > 4G
- return 1 in case of error.
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: ramil
# Host: myoffice.izhnet.ru
# Root: /usr/home/ram/work/5.0.b15108
--- 1.278/sql/ha_innodb.cc 2005-11-19 16:11:49 +04:00
+++ 1.279/sql/ha_innodb.cc 2005-11-24 13:03:56 +04:00
@@ -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;
}
}
| Thread |
|---|
| • bk commit into 5.0 tree (ramil:1.1999) BUG#15108 | ramil | 24 Nov |