summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/idhack.cpp
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:35:30 -0500
commit48e7b856f2b336537ca560ae9ab1740a293b53b9 (patch)
tree54546f692d865872e8071309938f0832a0c35c2b /src/mongo/db/exec/idhack.cpp
parent2a4111960fee25453ed0974ee9eae95ec25bd556 (diff)
downloadmongo-48e7b856f2b336537ca560ae9ab1740a293b53b9.tar.gz
SERVER-17281 IDHackStage::invalidate() dereference correct OpCtx ptr
Diffstat (limited to 'src/mongo/db/exec/idhack.cpp')
-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 8d1e9b0b92f..5c08225a73a 100644
--- a/src/mongo/db/exec/idhack.cpp
+++ b/src/mongo/db/exec/idhack.cpp
@@ -218,7 +218,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);
}
}
}