summaryrefslogtreecommitdiff
path: root/src/mongo/client/dbclientcursor.h
diff options
context:
space:
mode:
authorAdam Chelminski <adam.chelminski@mongodb.com>2016-08-17 17:11:10 -0400
committerAdam Chelminski <adam.chelminski@mongodb.com>2016-08-19 11:11:23 -0400
commit1a3d60af4d27d72e15637bb43510fe1b592a6c43 (patch)
tree7ab2edd2291f41a2fe37262f32e37618de5f0388 /src/mongo/client/dbclientcursor.h
parent76f1c8254147f806fef11e9dedabee359422c02b (diff)
downloadmongo-1a3d60af4d27d72e15637bb43510fe1b592a6c43.tar.gz
SERVER-13517 Internal client validates BSON in all command responses and when reading from cursor in DBClientCursor
Diffstat (limited to 'src/mongo/client/dbclientcursor.h')
-rw-r--r--src/mongo/client/dbclientcursor.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mongo/client/dbclientcursor.h b/src/mongo/client/dbclientcursor.h
index b8592738921..c0367b830a0 100644
--- a/src/mongo/client/dbclientcursor.h
+++ b/src/mongo/client/dbclientcursor.h
@@ -212,6 +212,7 @@ public:
int nReturned{0};
int pos{0};
const char* data{nullptr};
+ int remainingBytes{0};
public:
Batch() = default;