Fixed tmpfile buffer size.

This commit is contained in:
Alexandre Julliard 2001-01-17 01:55:21 +00:00
parent 3879b19342
commit 1b2e90e31b
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ int convert_to_res ()
FILE *fin, *ftemp;
char buffer[255];
char infile[255];
char tmpfile[L_tmpnam];
char tmpfile[255];
char *pos;
int c, len;
struct stat st;