summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mongo/s/query/cluster_cursor_manager.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/mongo/s/query/cluster_cursor_manager.cpp b/src/mongo/s/query/cluster_cursor_manager.cpp
index 5c267bde0a1..3524e8b1e31 100644
--- a/src/mongo/s/query/cluster_cursor_manager.cpp
+++ b/src/mongo/s/query/cluster_cursor_manager.cpp
@@ -249,8 +249,13 @@ StatusWith<CursorId> ClusterCursorManager::registerCursor(
do {
// The server has always generated positive values for CursorId (which is a signed
// type), so we use std::abs() here on the prefix for consistency with this historical
- // behavior.
- containerPrefix = static_cast<uint32_t>(std::abs(_pseudoRandom.nextInt32()));
+ // behavior. If the random number generated is INT_MIN, calling std::abs on it is
+ // undefined behavior on 2's complement systems so we need to generate a new number.
+ int32_t randomNumber = 0;
+ do {
+ randomNumber = _pseudoRandom.nextInt32();
+ } while (randomNumber == std::numeric_limits<int32_t>::min());
+ containerPrefix = static_cast<uint32_t>(std::abs(randomNumber));
} while (_cursorIdPrefixToNamespaceMap.count(containerPrefix) > 0);
_cursorIdPrefixToNamespaceMap[containerPrefix] = nss;