[editorKeysounds] Stop an editor closing crash.

If you close the program while in the editor
in debug mode, it can occasionally cause
a bad access violation with the mutexes.

If someone really wants this back, go ahead and
put it back in.

...this really should have gone in default first.
This commit is contained in:
Jason Felds
2012-02-10 19:18:40 -05:00
parent f3d260bc88
commit e1af1eb2b6
-3
View File
@@ -38,9 +38,6 @@ void TimingData::Clear()
vector<TimingSegment*> &vSegs = m_avpTimingSegments[tst];
for( unsigned i = 0; i < vSegs.size(); ++i )
{
#if defined(DEBUG)
LOG->Trace( "TimingData::Clear(): deleting %p", vSegs[i] );
#endif
SAFE_DELETE( vSegs[i] );
}