diff options
author | Neil <nyamatongwe@gmail.com> | 2021-10-26 08:13:50 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-10-26 08:13:50 +1100 |
commit | c1c75875711460c2de9c838b5f679dc8d965aea6 (patch) | |
tree | 4de0228e59135a1c9c05f6d90197f9ffa6a6cac2 /src | |
parent | 947d0a3b4031be0e6881b12e92df751675faabe8 (diff) | |
download | scintilla-mirror-c1c75875711460c2de9c838b5f679dc8d965aea6.tar.gz |
Ensure variables initialized.
Diffstat (limited to 'src')
-rw-r--r-- | src/CellBuffer.cxx | 2 |
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); } |