Changes in src/Helpers/MemDebug.cpp [bcf653:ad7270]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/Helpers/MemDebug.cpp ¶
rbcf653 rad7270 380 380 // mark the block as not in the list (will be changed by addEntry) 381 381 entry->isIgnored = true; 382 Memory::addEntry(entry); 382 if (line != 0) { // indicator that we do not know the source 383 Memory::addEntry(entry); 384 } 383 385 384 386 // get the checksum... … … 424 426 // mark the block as not in the list (will be changed by addEntry) 425 427 entry->isIgnored = true; 426 Memory::addEntry(entry); 428 if (line != 0) { // indicator that we do not know the source 429 Memory::addEntry(entry); 430 } 427 431 428 432 // get the checksum... … … 505 509 void operator delete(void *ptr) throw() { 506 510 if(!ptr){ 507 cerr << "Warning: Deleting NULL pointer" << endl;511 //cerr << "Warning: Deleting NULL pointer" << endl; 508 512 return; 509 513 }
Note:
See TracChangeset
for help on using the changeset viewer.