Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/Helpers/MemDebug.cpp

    rbcf653 rad7270  
    380380  // mark the block as not in the list (will be changed by addEntry)
    381381  entry->isIgnored = true;
    382   Memory::addEntry(entry);
     382  if (line != 0)  { // indicator that we do not know the source
     383    Memory::addEntry(entry);
     384  }
    383385
    384386  // get the checksum...
     
    424426  // mark the block as not in the list (will be changed by addEntry)
    425427  entry->isIgnored = true;
    426   Memory::addEntry(entry);
     428  if (line != 0)  { // indicator that we do not know the source
     429    Memory::addEntry(entry);
     430  }
    427431
    428432  // get the checksum...
     
    505509void operator delete(void *ptr) throw() {
    506510  if(!ptr){
    507     cerr << "Warning: Deleting NULL pointer" << endl;
     511    //cerr << "Warning: Deleting NULL pointer" << endl;
    508512    return;
    509513  }
Note: See TracChangeset for help on using the changeset viewer.