Skip to content
Snippets Groups Projects
Commit 5f0e073c authored by deuce's avatar deuce
Browse files

Fix up _fsopen() to properly create/truncate files.

parent 6f0d99e5
No related branches found
No related tags found
No related merge requests found
......@@ -275,16 +275,16 @@ FILE *_fsopen(char *pszFilename, char *pszMode, int shmode)
Mode=O_RDONLY;
break;
case 2:
Mode=O_WRONLY|O_CREAT;
Mode=O_WRONLY|O_CREAT|O_TRUNC;
break;
case 4:
Mode=O_APPEND|O_WRONLY|O_CREAT;
break;
case 9:
Mode=O_RDWR;
Mode=O_RDWR|O_CREAT;
break;
case 10:
Mode=O_RDWR|O_CREAT;
Mode=O_RDWR|O_CREAT|O_TRUNC;
break;
case 12:
Mode=O_RDWR|O_APPEND|O_CREAT;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment