diff options
Diffstat (limited to 'db/common.cpp')
-rw-r--r-- | db/common.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/db/common.cpp b/db/common.cpp index b7883f5..44bc54d 100644 --- a/db/common.cpp +++ b/db/common.cpp @@ -26,4 +26,8 @@ namespace mongo { /* we use new here so we don't have to worry about destructor orders at program shutdown */ MongoMutex &dbMutex( *(new MongoMutex("rw:dbMutex")) ); + MongoMutex::MongoMutex(const char *name) : _m(name) { + _remapPrivateViewRequested = false; + } + } |