aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CellBuffer.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-07-05 13:49:29 +0000
committernyamatongwe <unknown>2000-07-05 13:49:29 +0000
commit98d06e492f36b02ea5f29f03952d184052fca220 (patch)
treeb034978dc28ba3572c8ac3866c1cdf5b45f6aaa9 /src/CellBuffer.cxx
parentabe70b07bd9bec5d94ffc5ce72c5ee7613981ac8 (diff)
downloadscintilla-mirror-98d06e492f36b02ea5f29f03952d184052fca220.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();
}