* path.cc (symlink_info::check): Remove unneeded/unused variable.
This commit is contained in:
parent
26e603454f
commit
fade1f2e21
|
@ -1,3 +1,7 @@
|
||||||
|
2012-07-02 Christopher Faylor <me.cygwin2012@cgf.cx>
|
||||||
|
|
||||||
|
* path.cc (symlink_info::check): Remove unneeded/unused variable.
|
||||||
|
|
||||||
2012-07-02 Corinna Vinschen <corinna@vinschen.de>
|
2012-07-02 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* dll_init.cc (dll_list::alloc): Take long UNC paths into account.
|
* dll_init.cc (dll_list::alloc): Take long UNC paths into account.
|
||||||
|
|
|
@ -2372,8 +2372,6 @@ restart:
|
||||||
bool had_ext = !!*ext_here;
|
bool had_ext = !!*ext_here;
|
||||||
while (suffix.next ())
|
while (suffix.next ())
|
||||||
{
|
{
|
||||||
bool no_ea = false;
|
|
||||||
|
|
||||||
error = 0;
|
error = 0;
|
||||||
get_nt_native_path (suffix.path, upath, pflags & PATH_DOS);
|
get_nt_native_path (suffix.path, upath, pflags & PATH_DOS);
|
||||||
if (h)
|
if (h)
|
||||||
|
@ -2404,7 +2402,6 @@ restart:
|
||||||
root dir which has EAs enabled? */
|
root dir which has EAs enabled? */
|
||||||
|| status == STATUS_INVALID_PARAMETER))
|
|| status == STATUS_INVALID_PARAMETER))
|
||||||
{
|
{
|
||||||
no_ea = true;
|
|
||||||
/* If EAs are not supported, there's no sense to check them again
|
/* If EAs are not supported, there's no sense to check them again
|
||||||
with suffixes attached. So we set eabuf/easize to 0 here once. */
|
with suffixes attached. So we set eabuf/easize to 0 here once. */
|
||||||
if (status == STATUS_EAS_NOT_SUPPORTED
|
if (status == STATUS_EAS_NOT_SUPPORTED
|
||||||
|
|
Loading…
Reference in New Issue