diff options
| author | nyamatongwe <devnull@localhost> | 2001-05-01 12:46:24 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2001-05-01 12:46:24 +0000 | 
| commit | ed25a2c8a1c62d6db981c521c89f1cdecb2e20e6 (patch) | |
| tree | c6e8946ee2ca51a2993f2b26ff5e40fcdbc175ab | |
| parent | 2bf292a604d2b8e2bb07be283d8ab0067f24a43b (diff) | |
| download | scintilla-mirror-ed25a2c8a1c62d6db981c521c89f1cdecb2e20e6.tar.gz | |
Fixed shutdown memory deallocation.
| -rw-r--r-- | win32/ExternalLexer.cxx | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/ExternalLexer.cxx b/win32/ExternalLexer.cxx index 83aee0677..871ddf1a0 100644 --- a/win32/ExternalLexer.cxx +++ b/win32/ExternalLexer.cxx @@ -272,7 +272,7 @@ LexerManager::~LexerManager() {  		if (NULL != first) {  			LexerLibrary *cur = first;  			LexerLibrary *next = first->next; -			while (first) { +			while (cur) {  				delete cur;  				cur = next;  			}  | 
