1
0
Fork 0
forked from len0rd/rockbox

The win32 open() was called with the wrong flags

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4845 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2004-07-08 05:50:20 +00:00
parent 81f0b58e46
commit b6f67a8c10

View file

@ -54,6 +54,7 @@ struct mydir {
typedef struct mydir MYDIR;
#ifndef WIN32
static unsigned int rockbox2sim(int opt)
{
int newopt = 0;
@ -70,7 +71,7 @@ static unsigned int rockbox2sim(int opt)
return newopt;
}
#endif
MYDIR *sim_opendir(const char *name)
{
@ -132,14 +133,16 @@ void sim_closedir(MYDIR *dir)
int sim_open(const char *name, int o)
{
char buffer[256]; /* sufficiently big */
#ifndef WIN32
int opts = rockbox2sim(o);
#endif
if(name[0] == '/') {
sprintf(buffer, "%s%s", SIMULATOR_ARCHOS_ROOT, name);
debugf("We open the real file '%s'\n", buffer);
#ifdef WIN32
return (open)(buffer, opts);
return (open)(buffer, o);
#else
return (open)(buffer, opts, 0666);
#endif