diff options
author | nyamatongwe <devnull@localhost> | 2000-07-05 13:49:29 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-07-05 13:49:29 +0000 |
commit | 7becad30859bf44144ec7a35d29dc1500f2670d1 (patch) | |
tree | b034978dc28ba3572c8ac3866c1cdf5b45f6aaa9 /src/CellBuffer.cxx | |
parent | 63654a7adf0e2960f63d2e20ccf3900d274fa410 (diff) | |
download | scintilla-mirror-7becad30859bf44144ec7a35d29dc1500f2670d1.tar.gz |
Fixed BoundsChecker warnings including some leaks.
Diffstat (limited to 'src/CellBuffer.cxx')
-rw-r--r-- | src/CellBuffer.cxx | 4 |
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(); } |