aboutsummaryrefslogtreecommitdiff
path: root/src/support/lockedpool.h
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2019-01-06 16:38:32 +0100
committerpracticalswift <practicalswift@users.noreply.github.com>2019-01-06 17:45:53 +0100
commitca126d490b0ff6960e135f3c77b2b2d4892a5744 (patch)
treef7255fed8ac1451d6438eb058f640cc58f0fe0a8 /src/support/lockedpool.h
parent9c719987718d9fcc3a689e50f5212acc7ead7606 (diff)
downloadbitcoin-ca126d490b0ff6960e135f3c77b2b2d4892a5744.tar.xz
Fix out-of-bounds write in case of failing mmap(...) in PosixLockedPageAllocator::AllocateLocked
Diffstat (limited to 'src/support/lockedpool.h')
-rw-r--r--src/support/lockedpool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/support/lockedpool.h b/src/support/lockedpool.h
index 48ffd7b307..b420c909fc 100644
--- a/src/support/lockedpool.h
+++ b/src/support/lockedpool.h
@@ -22,7 +22,7 @@ public:
virtual ~LockedPageAllocator() {}
/** Allocate and lock memory pages.
* If len is not a multiple of the system page size, it is rounded up.
- * Returns 0 in case of allocation failure.
+ * Returns nullptr in case of allocation failure.
*
* If locking the memory pages could not be accomplished it will still
* return the memory, however the lockingSuccess flag will be false.