* path.cc (path_conv::check): Punt when attempting to access a nonexistent
directory or file in /proc.
This commit is contained in:
parent
5484689472
commit
5746f4b602
|
@ -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>
|
2005-04-19 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* security.cc (alloc_sd): Remove DELETE bit from user's ACE if
|
* security.cc (alloc_sd): Remove DELETE bit from user's ACE if
|
||||||
|
|
|
@ -663,7 +663,8 @@ path_conv::check (const char *src, unsigned opt,
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
fileattr = INVALID_FILE_ATTRIBUTES;
|
fileattr = INVALID_FILE_ATTRIBUTES;
|
||||||
goto virtual_component_retry;
|
error = ENOENT;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue