Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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
wine
wine-winehq
Commits
e766985b
Commit
e766985b
authored
Dec 09, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Dec 10, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Fix the permissions returned by fstat*() (with test).
parent
266ee43e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
file.c
dlls/msvcrt/file.c
+2
-2
file.c
dlls/msvcrt/tests/file.c
+2
-0
No files found.
dlls/msvcrt/file.c
View file @
e766985b
...
...
@@ -1167,9 +1167,9 @@ int CDECL MSVCRT__fstat64(int fd, struct MSVCRT__stat64* buf)
msvcrt_set_errno
(
ERROR_INVALID_PARAMETER
);
return
-
1
;
}
buf
->
st_mode
=
S_IFREG
|
S_IREAD
;
buf
->
st_mode
=
S_IFREG
|
0444
;
if
(
!
(
hfi
.
dwFileAttributes
&
FILE_ATTRIBUTE_READONLY
))
buf
->
st_mode
|=
S_IWRITE
;
buf
->
st_mode
|=
0222
;
buf
->
st_size
=
((
__int64
)
hfi
.
nFileSizeHigh
<<
32
)
+
hfi
.
nFileSizeLow
;
RtlTimeToSecondsSince1970
((
LARGE_INTEGER
*
)
&
hfi
.
ftLastAccessTime
,
&
dw
);
buf
->
st_atime
=
dw
;
...
...
dlls/msvcrt/tests/file.c
View file @
e766985b
...
...
@@ -905,6 +905,7 @@ static void test_stat(void)
{
ok
(
fstat
(
fd
,
&
buf
)
==
0
,
"fstat failed: errno=%d"
,
errno
);
ok
((
buf
.
st_mode
&
_S_IFMT
)
==
_S_IFREG
,
"bad format = %06o
\n
"
,
buf
.
st_mode
);
ok
((
buf
.
st_mode
&
0777
)
==
0666
,
"bad st_mode = %06o
\n
"
,
buf
.
st_mode
);
ok
(
buf
.
st_dev
==
0
,
"st_dev is %d, expected 0
\n
"
,
buf
.
st_dev
);
ok
(
buf
.
st_dev
==
buf
.
st_rdev
,
"st_dev (%d) and st_rdev (%d) differ
\n
"
,
buf
.
st_dev
,
buf
.
st_rdev
);
ok
(
buf
.
st_nlink
==
1
,
"st_nlink is %d, expected 1
\n
"
,
buf
.
st_nlink
);
...
...
@@ -912,6 +913,7 @@ static void test_stat(void)
ok
(
stat
(
"stat.tst"
,
&
buf
)
==
0
,
"stat failed: errno=%d"
,
errno
);
ok
((
buf
.
st_mode
&
_S_IFMT
)
==
_S_IFREG
,
"bad format = %06o
\n
"
,
buf
.
st_mode
);
ok
((
buf
.
st_mode
&
0777
)
==
0666
,
"bad st_mode = %06o
\n
"
,
buf
.
st_mode
);
ok
(
buf
.
st_dev
==
buf
.
st_rdev
,
"st_dev (%d) and st_rdev (%d) differ
\n
"
,
buf
.
st_dev
,
buf
.
st_rdev
);
ok
(
buf
.
st_nlink
==
1
,
"st_nlink is %d, expected 1
\n
"
,
buf
.
st_nlink
);
ok
(
buf
.
st_size
==
0
,
"st_size is %d, expected 0
\n
"
,
buf
.
st_size
);
...
...
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