diff options
| author | nyamatongwe <devnull@localhost> | 2011-02-20 08:43:25 +1100 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2011-02-20 08:43:25 +1100 | 
| commit | c599749164ede08d1e68dbb857135eb75abb1f25 (patch) | |
| tree | 20038032b7afcf721b95efc8d01619b12206acd8 /src | |
| parent | 63d64405ee7c55959b393cfc5afa5eb13f65d95a (diff) | |
| download | scintilla-mirror-c599749164ede08d1e68dbb857135eb75abb1f25.tar.gz | |
Avoid some cppcheck warnings.
Diffstat (limited to 'src')
| -rw-r--r-- | src/AutoComplete.cxx | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/AutoComplete.cxx b/src/AutoComplete.cxx index 32cf7b2ed..f6a291fe9 100644 --- a/src/AutoComplete.cxx +++ b/src/AutoComplete.cxx @@ -129,11 +129,11 @@ void AutoComplete::Select(const char *word) {  	size_t lenWord = strlen(word);  	int location = -1;  	const int maxItemLen=1000; -	char item[maxItemLen];  	int start = 0; // lower bound of the api array block to search  	int end = lb->Length() - 1; // upper bound of the api array block to search  	while ((start <= end) && (location == -1)) { // Binary searching loop  		int pivot = (start + end) / 2; +		char item[maxItemLen];  		lb->GetValue(pivot, item, maxItemLen);  		int cond;  		if (ignoreCase) | 
