diff options
author | nyamatongwe <devnull@localhost> | 2001-10-11 22:14:25 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-10-11 22:14:25 +0000 |
commit | 9e526b4bada24e7c42aa66fbe7a6ebd79a899765 (patch) | |
tree | c09389f65e6702080d0ee985c6a1cfe413568bd8 /src | |
parent | b0bb8949f54f2f35189a4b27f5597acc599b6de5 (diff) | |
download | scintilla-mirror-9e526b4bada24e7c42aa66fbe7a6ebd79a899765.tar.gz |
Fixed memory leak.
Diffstat (limited to 'src')
-rw-r--r-- | src/LexConf.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/LexConf.cxx b/src/LexConf.cxx index 2dbb65c37..c8441f41e 100644 --- a/src/LexConf.cxx +++ b/src/LexConf.cxx @@ -172,6 +172,7 @@ static void ColouriseConfDoc(unsigned int startPos, int length, int, WordList *k } } + delete []buffer; } LexerModule lmConf(SCLEX_CONF, ColouriseConfDoc, "conf"); |