From b7e18fe7606b8c8972b4e871c9716d0fb861c58a Mon Sep 17 00:00:00 2001 From: Roy Tam Date: Wed, 16 May 2018 21:12:25 +0800 Subject: [PATCH] storage: don't use sqlite3_mutex_held()and sqlite3_mutex_notheld() even on debug build, which cause unresolved symbol in vc8 on linking --- storage/src/SQLiteMutex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/src/SQLiteMutex.h b/storage/src/SQLiteMutex.h index e6ea0ab07..db5c531e9 100644 --- a/storage/src/SQLiteMutex.h +++ b/storage/src/SQLiteMutex.h @@ -50,7 +50,7 @@ public: mMutex = aMutex; } -#if !defined(DEBUG) || defined(MOZ_NATIVE_SQLITE) +#if 1//!defined(DEBUG) || defined(MOZ_NATIVE_SQLITE) /** * Acquires the mutex. */