build: slightly change files to pass compilation

Compiled using Clang and encountered errors on ambiguous pointer
type, implicit conversion NULL to bool, and unused function, etc.
As a fix, this patch slightly updates the related codes.

Change-Id: I4a73d66293313dda36749036f5c73aaf2a445231
This commit is contained in:
Xianwei Zhang
2019-06-06 11:23:48 -05:00
parent 4a9c36b32c
commit ee917344ff
7 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ class Tracker {
static void Destroy() {
std::lock_guard<mutex_t> lck(glob_mutex_);
if (instance_ != NULL) delete instance_;
if (instance_ != NULL) delete instance_.load();
instance_ = NULL;
}