Commit ac7ec584 authored by unknown's avatar unknown

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

into  mysql.com:/home/stewart/Documents/MySQL/4.1/merge

parents d7055274 3af116f1
......@@ -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;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment