* path.cc (path_conv::check): Punt when attempting to access a nonexistent

directory or file in /proc.
This commit is contained in:
Christopher Faylor 2005-04-20 04:06:25 +00:00
parent 5484689472
commit 5746f4b602
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-04-20 Christopher Faylor <cgf@timesys.com>
* path.cc (path_conv::check): Punt when attempting to access a
nonexistent directory or file in /proc.
2005-04-19 Corinna Vinschen <corinna@vinschen.de>
* security.cc (alloc_sd): Remove DELETE bit from user's ACE if

View File

@ -663,7 +663,8 @@ path_conv::check (const char *src, unsigned opt,
break;
default:
fileattr = INVALID_FILE_ATTRIBUTES;
goto virtual_component_retry;
error = ENOENT;
break;
}
goto out;
}