fix issue reported by msvc memory sanitiser

This commit is contained in:
Ondrej Novak 2025-02-15 13:10:17 +01:00
parent 075100d2ce
commit 14d1a4666d
3 changed files with 7 additions and 11 deletions

View file

@ -1386,7 +1386,7 @@ void enc_close(TMPFILE_RD *fil)
int load_string_list_ex(TSTR_LIST *list,const char *filename)
{
char c[1024],*p;
int i,j,lin=0;
int i=0,j,lin=0;
TMPFILE_RD *f;
f=enc_open(filename);