aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CellBuffer.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-10-26 08:13:50 +1100
committerNeil <nyamatongwe@gmail.com>2021-10-26 08:13:50 +1100
commitc1c75875711460c2de9c838b5f679dc8d965aea6 (patch)
tree4de0228e59135a1c9c05f6d90197f9ffa6a6cac2 /src/CellBuffer.cxx
parent947d0a3b4031be0e6881b12e92df751675faabe8 (diff)
downloadscintilla-mirror-c1c75875711460c2de9c838b5f679dc8d965aea6.tar.gz
Ensure variables initialized.
Diffstat (limited to 'src/CellBuffer.cxx')
-rw-r--r--src/CellBuffer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CellBuffer.cxx b/src/CellBuffer.cxx
index b922b08bb..178975c1e 100644
--- a/src/CellBuffer.cxx
+++ b/src/CellBuffer.cxx
@@ -1286,7 +1286,7 @@ void CellBuffer::EndUndoAction() {
}
void CellBuffer::AddUndoAction(Sci::Position token, bool mayCoalesce) {
- bool startSequence;
+ bool startSequence = false;
uh.AppendAction(ActionType::container, token, nullptr, 0, startSequence, mayCoalesce);
}