Merge mysql.com:/home/stewart/Documents/MySQL/4.1/bug18833

into  mysql.com:/home/stewart/Documents/MySQL/4.1/merge
This commit is contained in:
stewart@mysql.com 2006-04-18 17:21:54 +10:00
commit 4e092ed74f

View File

@ -111,8 +111,12 @@ SimBlockList::unload(){
if(theList != 0){
for(int i = 0; i<noOfBlocks; i++){
if(theList[i] != 0){
#ifdef VM_TRACE
theList[i]->~SimulatedBlock();
free(theList[i]);
#else
delete(theList[i]);
#endif
theList[i] = 0;
}
}