X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;f=direct%2Fyaffsfs.c;h=6622536c834e652826445ada9c76cc0cae764659;hb=a0af04609fa36f2396474a3fbd6ef126de527c70;hp=15d5aeb7b0ed35911f3edb8ea12fc090636981a6;hpb=d84af1d4633120e3dea173c7f91aa8cfc3421706;p=yaffs2.git diff --git a/direct/yaffsfs.c b/direct/yaffsfs.c index 15d5aeb..6622536 100644 --- a/direct/yaffsfs.c +++ b/direct/yaffsfs.c @@ -1724,7 +1724,7 @@ int yaffs_access(const YCHAR *path, int amode) struct yaffs_obj *obj=NULL; struct yaffs_obj *dir=NULL; - int retval = 0; + int retval = -1; if(amode & ~(R_OK | W_OK | X_OK)){ yaffsfs_SetError(-EINVAL); @@ -1749,10 +1749,10 @@ int yaffs_access(const YCHAR *path, int amode) if((amode & X_OK) && !(obj->yst_mode & S_IEXEC)) access_ok = 0; - if(!access_ok) { + if(!access_ok) yaffsfs_SetError(-EACCES); - retval = -1; - } + else + retval = 0; } yaffsfs_Unlock();