open files properly

SVN revision: 11959
This commit is contained in:
tsauerbeck 2004-10-22 13:57:49 +00:00 committed by tsauerbeck
parent 565add21a7
commit ea400bc3ff
5 changed files with 9 additions and 9 deletions

View File

@ -630,7 +630,7 @@ data_write(void)
}
close(fd);
}
f = fopen(tmpo, "r");
f = fopen(tmpo, "rb");
if (f)
{
int size;

View File

@ -62,7 +62,7 @@ source_fetch_file(char *fil, char *filname)
FILE *f;
char buf[256 * 1024];
f = fopen(fil, "r");
f = fopen(fil, "rb");
if (!f)
return;
else

View File

@ -230,7 +230,7 @@ output(void)
printf("ERROR: potential security violation. attempt to write in parent dir.\n");
exit (-1);
}
f = fopen(out, "w");
f = fopen(out, "wb");
fwrite(font, fontsize, 1, f);
fclose(f);
free(font);

View File

@ -111,7 +111,7 @@ encdectest(void)
blah.blah3 = evas_list_append(blah.blah3, &blah3);
data = eet_data_descriptor_encode(edd, &blah, &size);
f = fopen("out", "w");
f = fopen("out", "wb");
if (f)
{
fwrite(data, size, 1, f);
@ -214,7 +214,7 @@ depak_file(Eet_File *ef, char *file)
eet_mkdirs(buf);
}
f = fopen(file, "w");
f = fopen(file, "wb");
if (f)
{
fwrite(data, 1, size, f);
@ -291,7 +291,7 @@ pak_file(Eet_File *ef, char *file, char **noz, int noz_num)
{
FILE *f;
f = fopen(file, "r");
f = fopen(file, "rb");
if (f)
{
int compress = 1;

View File

@ -372,12 +372,12 @@ eet_open(char *file, Eet_File_Mode mode)
/* try open the file based on mode */
if ((ef->mode == EET_FILE_MODE_READ) || (ef->mode == EET_FILE_MODE_RW))
ef->fp = fopen(ef->path, "r");
ef->fp = fopen(ef->path, "rb");
else if (ef->mode == EET_FILE_MODE_WRITE)
{
/* opening for write - delete old copy of file right away */
unlink(ef->real_path);
ef->fp = fopen(ef->path, "w");
ef->fp = fopen(ef->path, "wb");
}
else
{
@ -616,7 +616,7 @@ eet_open(char *file, Eet_File_Mode mode)
{
fclose(ef->fp);
unlink(ef->real_path);
ef->fp = fopen(ef->path, "w");
ef->fp = fopen(ef->path, "wb");
}
/* add to cache */