diff options
author | nyamatongwe <unknown> | 2001-10-11 22:14:25 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-10-11 22:14:25 +0000 |
commit | e36d0b8817fcdb6b4ba2cd0f09e34791d652818c (patch) | |
tree | c09389f65e6702080d0ee985c6a1cfe413568bd8 /src/LexConf.cxx | |
parent | 8bf069357efca443fda0038fbff2d1aef2301bc5 (diff) | |
download | scintilla-mirror-e36d0b8817fcdb6b4ba2cd0f09e34791d652818c.tar.gz |
Fixed memory leak.
Diffstat (limited to 'src/LexConf.cxx')
-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"); |