Lua IOlib: don't create files when they don't exist

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21715 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Maurus Cuelenaere 2009-07-08 14:54:40 +00:00
parent 50304a3ace
commit cfffedfa8b

View file

@ -156,8 +156,6 @@ static int io_open (lua_State *L) {
flags = O_WRONLY | O_APPEND; break;
}
}
if(!rb->file_exists(filename))
flags |= O_CREAT;
*pf = rb->open(filename, flags);
return (*pf < 0) ? pushresult(L, 0, filename) : 1;
}