summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Rassi <rassi@10gen.com>2015-02-17 11:35:30 -0500
committerJason Rassi <rassi@10gen.com>2015-02-17 11:36:07 -0500
commit5363aaf371338880c1f9518a6cc86817cc92d3b9 (patch)
treeb1aa9f0b9feaf5864c99e655af0e6ab93a766c53
parentac7d4eac9eb895886086eb6f0b763147ec7f3b90 (diff)
downloadmongo-5363aaf371338880c1f9518a6cc86817cc92d3b9.tar.gz
SERVER-17281 IDHackStage::invalidate() dereference correct OpCtx ptr
(cherry picked from commit 48e7b856f2b336537ca560ae9ab1740a293b53b9)
-rw-r--r--src/mongo/db/exec/idhack.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/exec/idhack.cpp b/src/mongo/db/exec/idhack.cpp
index 8931285e9e3..acf6ebc4122 100644
--- a/src/mongo/db/exec/idhack.cpp
+++ b/src/mongo/db/exec/idhack.cpp
@@ -197,7 +197,7 @@ namespace mongo {
WorkingSetMember* member = _workingSet->get(_idBeingPagedIn);
if (member->hasLoc() && (member->loc == dl)) {
// Fetch it now and kill the diskloc.
- WorkingSetCommon::fetchAndInvalidateLoc(_txn, member, _collection);
+ WorkingSetCommon::fetchAndInvalidateLoc(txn, member, _collection);
}
}
}