Changeset 25035 in vbox
- Timestamp:
- Nov 27, 2009 1:51:42 AM (15 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/Main/PerformanceImpl.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/PerformanceImpl.cpp
r25033 r25035 494 494 if ((*it)->associatedWith(aObject)) 495 495 { 496 /** @todo r=bird: This looks dodgy and needs to be tested with a VBOX_WITH_DEBUG_VCC_CRT. How to reproduce? */497 496 delete *it; 498 m.baseMetrics.erase(it++);497 it = m.baseMetrics.erase(it); 499 498 } 500 499 else … … 516 515 if ((*it)->associatedWith(aObject)) 517 516 { 518 /** @todo r=bird: This looks dodgy and needs to be tested with a VBOX_WITH_DEBUG_VCC_CRT. How to reproduce? */519 517 delete *it; 520 m.metrics.erase(it++);518 it = m.metrics.erase(it); 521 519 } 522 520 else
Note:
See TracChangeset
for help on using the changeset viewer.

