Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Aleksandr Isakov
wine-fonts
Commits
9a79574a
Commit
9a79574a
authored
Aug 20, 2014
by
Erich E. Hoover
Committed by
Vitaly Lipatov
Jul 30, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Perform the Unix-style hidden file check within the unified file info grabbing routine.
parent
bbf5d35e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
14 deletions
+9
-14
file.c
dlls/ntdll/unix/file.c
+9
-14
No files found.
dlls/ntdll/unix/file.c
View file @
9a79574a
...
...
@@ -1311,15 +1311,15 @@ static BOOLEAN get_dir_case_sensitivity( const char *dir )
*
* Check if the specified file should be hidden based on its name and the show dot files option.
*/
static
BOOL
is_hidden_file
(
const
UNICODE_STRING
*
name
)
static
BOOL
is_hidden_file
(
const
char
*
name
)
{
WCHAR
*
p
,
*
end
;
const
char
*
p
,
*
end
;
if
(
show_dot_files
)
return
FALSE
;
end
=
p
=
name
->
Buffer
+
name
->
Length
/
sizeof
(
WCHAR
);
while
(
p
>
name
->
Buffer
&&
p
[
-
1
]
==
'\\'
)
p
--
;
while
(
p
>
name
->
Buffer
&&
p
[
-
1
]
!=
'\\'
)
p
--
;
end
=
p
=
name
+
strlen
(
name
);
while
(
p
>
name
&&
p
[
-
1
]
==
'\\'
)
p
--
;
while
(
p
>
name
&&
p
[
-
1
]
!=
'\\'
)
p
--
;
return
(
p
<
end
&&
*
p
==
'.'
);
}
...
...
@@ -1662,6 +1662,10 @@ static int get_file_info( const char *path, struct stat *st, ULONG *attr )
free
(
parent_path
);
}
*
attr
|=
get_file_attributes
(
st
);
/* convert Unix-style hidden files to a DOS hidden file attribute */
if
(
is_hidden_file
(
path
))
*
attr
|=
FILE_ATTRIBUTE_HIDDEN
;
/* retrieve any stored DOS attributes */
len
=
xattr_get
(
path
,
SAMBA_XATTR_DOS_ATTRIB
,
hexattr
,
sizeof
(
hexattr
)
-
1
);
if
(
len
==
-
1
)
return
ret
;
*
attr
|=
get_file_xattr
(
hexattr
,
len
);
...
...
@@ -2190,11 +2194,6 @@ static NTSTATUS get_dir_data_entry( struct dir_data *dir_data, void *info_ptr, I
if
(
class
!=
FileNamesInformation
)
{
if
(
st
.
st_dev
!=
dir_data
->
id
.
dev
)
st
.
st_ino
=
0
;
/* ignore inode if on a different device */
if
(
!
show_dot_files
&&
names
->
long_name
[
0
]
==
'.'
&&
names
->
long_name
[
1
]
&&
(
names
->
long_name
[
1
]
!=
'.'
||
names
->
long_name
[
2
]))
attributes
|=
FILE_ATTRIBUTE_HIDDEN
;
fill_file_info
(
&
st
,
attributes
,
info
,
class
);
}
...
...
@@ -4158,7 +4157,6 @@ NTSTATUS WINAPI NtQueryFullAttributesFile( const OBJECT_ATTRIBUTES *attr,
info
->
AllocationSize
=
std
.
AllocationSize
;
info
->
EndOfFile
=
std
.
EndOfFile
;
info
->
FileAttributes
=
basic
.
FileAttributes
;
if
(
is_hidden_file
(
attr
->
ObjectName
))
info
->
FileAttributes
|=
FILE_ATTRIBUTE_HIDDEN
;
}
free
(
unix_name
);
}
...
...
@@ -4189,10 +4187,7 @@ NTSTATUS WINAPI NtQueryAttributesFile( const OBJECT_ATTRIBUTES *attr, FILE_BASIC
else
if
(
!
S_ISREG
(
st
.
st_mode
)
&&
!
S_ISDIR
(
st
.
st_mode
))
status
=
STATUS_INVALID_INFO_CLASS
;
else
{
status
=
fill_file_info
(
&
st
,
attributes
,
info
,
FileBasicInformation
);
if
(
is_hidden_file
(
attr
->
ObjectName
))
info
->
FileAttributes
|=
FILE_ATTRIBUTE_HIDDEN
;
}
free
(
unix_name
);
}
else
WARN
(
"%s not found (%x)
\n
"
,
debugstr_us
(
attr
->
ObjectName
),
status
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment