aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2001-10-11 22:14:25 +0000
committernyamatongwe <devnull@localhost>2001-10-11 22:14:25 +0000
commit9e526b4bada24e7c42aa66fbe7a6ebd79a899765 (patch)
treec09389f65e6702080d0ee985c6a1cfe413568bd8 /src
parentb0bb8949f54f2f35189a4b27f5597acc599b6de5 (diff)
downloadscintilla-mirror-9e526b4bada24e7c42aa66fbe7a6ebd79a899765.tar.gz
Fixed memory leak.
Diffstat (limited to 'src')
-rw-r--r--src/LexConf.cxx1
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");