Merge pull request #1 from rhurlin/rhurlin-patch-1

Unsigned error in index.c
This commit is contained in:
Rainer Hurling 2020-10-24 20:34:37 +02:00 committed by GitHub
commit fb058c5ff1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -383,7 +383,7 @@ mdb_index_hash_text(MdbHandle *mdb, char *text, char *hash)
{
#ifdef __MSWSTR_H__
char *out_ptr = alloca((len+1)*2);
int i;
unsigned int i;
// mdb_ascii2unicode doesn't work, we don't want unicode compression!
for (i=0; i<len+1; i++) {
out_ptr[i*2] = text[i];