aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/SplitVector.h
diff options
context:
space:
mode:
authorNeil Hodgson <nyamatongwe@gmail.com>2015-07-04 08:51:08 +1000
committerNeil Hodgson <nyamatongwe@gmail.com>2015-07-04 08:51:08 +1000
commit6383d824ceff7d6b3c16dd7c71747f36089c16ad (patch)
tree1d110edcc481e6bb87aa608920c0d3453674812b /src/SplitVector.h
parentb251de96975a3894a450d9e0e7be0ad769e533b3 (diff)
downloadscintilla-mirror-6383d824ceff7d6b3c16dd7c71747f36089c16ad.tar.gz
Throw an exception for a negative sized reallocation as occurs when asked
for more than 2GB.
Diffstat (limited to 'src/SplitVector.h')
-rw-r--r--src/SplitVector.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/SplitVector.h b/src/SplitVector.h
index 288c9e39f..3153700f5 100644
--- a/src/SplitVector.h
+++ b/src/SplitVector.h
@@ -85,6 +85,9 @@ public:
/// copy exisiting contents to the new buffer.
/// Must not be used to decrease the size of the buffer.
void ReAllocate(int newSize) {
+ if (newSize < 0)
+ throw std::runtime_error("SplitVector::ReAllocate: negative size.");
+
if (newSize > size) {
// Move the gap to the end
GapTo(lengthBody);