Little fix to avoid overflow

This commit is contained in:
Eric Andersen 2002-07-03 04:24:08 +00:00
parent abc9568690
commit 009ae1f17d

View File

@ -58,7 +58,7 @@ static int convert(char *fn, int ConvType)
if ((in = wfopen(fn, "rw")) == NULL) {
return -1;
}
strcpy(tempFn, fn);
safe_strncpy(tempFn, fn, sizeof(tempFn));
c = strlen(tempFn);
tempFn[c] = '.';
while(1) {