Little fix to avoid overflow
This commit is contained in:
parent
abc9568690
commit
009ae1f17d
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user