Merge pull request #123 from yying/master

Set sinks_ to NULL after deletion in LogDestination::DeleteLogDestinations
This commit is contained in:
Fumitoshi Ukai 2016-10-19 16:10:39 +09:00 committed by GitHub
commit bf766fac4f

View File

@ -825,6 +825,7 @@ void LogDestination::DeleteLogDestinations() {
}
MutexLock l(&sink_mutex_);
delete sinks_;
sinks_ = NULL;
}
namespace {