List:Commits« Previous MessageNext Message »
From:Stewart Smith Date:April 6 2006 11:26am
Subject:bk commit into 4.1 tree (stewart:1.2499) BUG#18833
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of stewart. When stewart 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.2499 06/04/06 21:26:29 stewart@stripped +1 -0
  BUG#18833 valgrind: Mismatched free()/delete/delete[] in SimBlockList

  ndb/src/kernel/SimBlockList.cpp
    1.8 06/04/06 21:26:25 stewart@stripped +1 -2
    NEW_BLOCK allocates the elements with new, we should free them with delete

# 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:	stewart
# Host:	willster.(none)
# Root:	/home/stewart/Documents/MySQL/4.1/bug18833

--- 1.7/ndb/src/kernel/SimBlockList.cpp	2005-08-18 22:02:19 +10:00
+++ 1.8/ndb/src/kernel/SimBlockList.cpp	2006-04-06 21:26:25 +10:00
@@ -111,8 +111,7 @@
   if(theList != 0){
     for(int i = 0; i<noOfBlocks; i++){
       if(theList[i] != 0){
-	theList[i]->~SimulatedBlock();
-	free(theList[i]);
+	delete(theList[i]);
 	theList[i] = 0;
       }
     }
Thread
bk commit into 4.1 tree (stewart:1.2499) BUG#18833Stewart Smith6 Apr