List:Commits« Previous MessageNext Message »
From:tomas Date:April 10 2006 4:42pm
Subject:bk commit into 5.1 tree (tomas:1.2010)
View as plain text  
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
  1.2010 06/04/10 18:42:41 tomas@stripped +1 -0
  stilled mem leak in find all tables

  sql/ha_ndbcluster.cc
    1.244 06/04/10 18:42:35 tomas@stripped +1 -1
    stilled mem leak in find all tables

# 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:	poseidon.ndb.mysql.com
# Root:	/home/tomas/wl2325-alcatel

--- 1.243/sql/ha_ndbcluster.cc	2006-04-10 11:40:35 +02:00
+++ 1.244/sql/ha_ndbcluster.cc	2006-04-10 18:42:35 +02:00
@@ -5001,7 +5001,6 @@
   DBUG_ENTER("ndbcluster_find_all_files");
   Ndb* ndb;
   char key[FN_REFLEN];
-  NdbDictionary::Dictionary::List list;
 
   if (!(ndb= check_ndb_in_thd(thd)))
     DBUG_RETURN(HA_ERR_NO_CONNECTION);
@@ -5011,6 +5010,7 @@
   int unhandled, retries= 5;
   do
   {
+    NdbDictionary::Dictionary::List list;
     if (dict->listObjects(list, NdbDictionary::Object::UserTable) != 0)
       ERR_RETURN(dict->getNdbError());
     unhandled= 0;
Thread
bk commit into 5.1 tree (tomas:1.2010)tomas10 Apr