diff options
| author | nyamatongwe <unknown> | 2001-05-01 12:46:24 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2001-05-01 12:46:24 +0000 | 
| commit | 259b04a1c28812a058eaa4f00deba9dd9f8e5567 (patch) | |
| tree | c6e8946ee2ca51a2993f2b26ff5e40fcdbc175ab | |
| parent | 19724c5fcab3abb25d959a7c7a27950601a45270 (diff) | |
| download | scintilla-mirror-259b04a1c28812a058eaa4f00deba9dd9f8e5567.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;  			} | 
