From: Date: May 11 2007 9:19am Subject: bk commit into 5.1 tree (tomas:1.2516) BUG#25818 List-Archive: http://lists.mysql.com/commits/26482 X-Bug: 25818 Message-Id: <20070511071909.D9DB63FA4A6@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-11 09:19:03+02:00, tomas@stripped +1 -0 Bug#25818 No return of NDB share object in failures in open method - correct manual/auto merge to 5.1 sql/ha_ndbcluster.cc@stripped, 2007-05-11 09:19:01+02:00, tomas@stripped +2 -2 Bug#25818 No return of NDB share object in failures in open method - correct manual/auto merge to 5.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-single-user --- 1.448/sql/ha_ndbcluster.cc 2007-05-11 08:11:45 +02:00 +++ 1.449/sql/ha_ndbcluster.cc 2007-05-11 09:19:01 +02:00 @@ -6292,9 +6292,9 @@ } if (res) { - free_share(m_share); + free_share(&m_share); m_share= 0; - release_metadata(); + release_metadata(current_thd, get_ndb()); DBUG_RETURN(res); } #ifdef HAVE_NDB_BINLOG