diff options
Diffstat (limited to 'www/firefox31/patches/patch-bg')
-rw-r--r-- | www/firefox31/patches/patch-bg | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/www/firefox31/patches/patch-bg b/www/firefox31/patches/patch-bg new file mode 100644 index 00000000000..f67ac9fe325 --- /dev/null +++ b/www/firefox31/patches/patch-bg @@ -0,0 +1,24 @@ +$NetBSD: patch-bg,v 1.1 2014/11/03 12:18:32 ryoon Exp $ + +--- storage/src/SQLiteMutex.h.orig 2013-10-25 22:27:40.000000000 +0000 ++++ storage/src/SQLiteMutex.h +@@ -108,15 +108,19 @@ public: + void assertCurrentThreadOwns() + { + NS_ASSERTION(mMutex, "No mutex associated with this wrapper!"); ++#if 0 + NS_ASSERTION(sqlite3_mutex_held(mMutex), + "Mutex is not held, but we expect it to be!"); ++#endif + } + + void assertNotCurrentThreadOwns() + { + NS_ASSERTION(mMutex, "No mutex associated with this wrapper!"); ++#if 0 + NS_ASSERTION(sqlite3_mutex_notheld(mMutex), + "Mutex is held, but we expect it to not be!"); ++#endif + } + #endif // ifndef DEBUG + |