From: Date: May 29 2007 5:55pm Subject: bk commit into 5.1 tree (tomas:1.2538) BUG#28749 List-Archive: http://lists.mysql.com/commits/27594 X-Bug: 28749 Message-Id: <20070529155518.A8D7C4222D1@whalegate.ndb.mysql.com> Below is the list of changes that have just been committed into a local 5.1 repository of tomas. When tomas 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@stripped, 2007-05-29 17:55:12+02:00, tomas@stripped +1 -0 Bug #28749 MaxNoOfOpenFiles offset by 1 storage/ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp@stripped, 2007-05-29 17:55:10+02:00, tomas@stripped +1 -1 Bug #28749 MaxNoOfOpenFiles offset by 1 # 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: tomas # Host: whalegate.ndb.mysql.com # Root: /home/tomas/mysql-5.1-telco-6.1 --- 1.32/storage/ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp 2006-12-23 20:20:18 +01:00 +++ 1.33/storage/ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp 2007-05-29 17:55:10 +02:00 @@ -650,7 +650,7 @@ Ndbfs::createAsyncFile(){ // Check limit of open files - if (theFiles.size()+1 == m_maxFiles) { + if (theFiles.size() == m_maxFiles) { // Print info about all open files for (unsigned i = 0; i < theFiles.size(); i++){ AsyncFile* file = theFiles[i];