aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CellBuffer.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-07-05 13:49:29 +0000
committernyamatongwe <devnull@localhost>2000-07-05 13:49:29 +0000
commit7becad30859bf44144ec7a35d29dc1500f2670d1 (patch)
treeb034978dc28ba3572c8ac3866c1cdf5b45f6aaa9 /src/CellBuffer.cxx
parent63654a7adf0e2960f63d2e20ccf3900d274fa410 (diff)
downloadscintilla-mirror-7becad30859bf44144ec7a35d29dc1500f2670d1.tar.gz
Fixed BoundsChecker warnings including some leaks.
Diffstat (limited to 'src/CellBuffer.cxx')
-rw-r--r--src/CellBuffer.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/CellBuffer.cxx b/src/CellBuffer.cxx
index 3f094ce96..130b289e6 100644
--- a/src/CellBuffer.cxx
+++ b/src/CellBuffer.cxx
@@ -119,7 +119,11 @@ void MarkerHandleSet::CombineWith(MarkerHandleSet *other) {
LineVector::LineVector() {
linesData = 0;
lines = 0;
+ size = 0;
levels = 0;
+ sizeLevels = 0;
+ handleCurrent = 1;
+
Init();
}