diff options
author | Jason Rassi <rassi@10gen.com> | 2015-02-17 11:35:30 -0500 |
---|---|---|
committer | Jason Rassi <rassi@10gen.com> | 2015-02-17 11:35:30 -0500 |
commit | 48e7b856f2b336537ca560ae9ab1740a293b53b9 (patch) | |
tree | 54546f692d865872e8071309938f0832a0c35c2b /src | |
parent | 2a4111960fee25453ed0974ee9eae95ec25bd556 (diff) | |
download | mongo-48e7b856f2b336537ca560ae9ab1740a293b53b9.tar.gz |
SERVER-17281 IDHackStage::invalidate() dereference correct OpCtx ptr
Diffstat (limited to 'src')
-rw-r--r-- | src/mongo/db/exec/idhack.cpp | 2 |
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); } } } |