summaryrefslogtreecommitdiff
path: root/mail/thunderbird/patches/patch-bg
blob: 905a6c5c26d5a84a808805368d4fb307aad010c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$NetBSD: patch-bg,v 1.2 2011/08/19 14:39:09 tnn Exp $

--- mozilla/storage/src/SQLiteMutex.h.orig	2010-05-28 13:22:58.000000000 +0000
+++ mozilla/storage/src/SQLiteMutex.h
@@ -141,15 +141,19 @@ public:
   void assertCurrentThreadOwns()
   {
     NS_ASSERTION(mMutex, "No mutex associated with this wrapper!");
+#if 0 /* XXX tnn: this breaks the debug build. */
     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 /* XXX tnn: this breaks the debug build. */
     NS_ASSERTION(sqlite3_mutex_notheld(mMutex),
                  "Mutex is held, but we expect it to not be!");
+#endif
   }
 #endif // ifndef DEBUG