Skip to content

Commit 8858e82

Browse files
committed
mongo, bugfix: lock the database when the cursor is destroyed asynchronously.
1 parent bd12bbd commit 8858e82

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

fibjs/src/db/mongo/MongoCursor.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ MongoCursor::MongoCursor(MongoDB* db, const exlib::string& ns,
6161

6262
static result_t _close(MongoCursor::cursor* cur)
6363
{
64+
cur->m_db->m_lock.lock();
6465
mongo_cursor_destroy(cur);
66+
cur->m_db->m_lock.unlock();
6567
delete cur;
6668
return 0;
6769
}

0 commit comments

Comments
 (0)