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
3f1404bf
Commit
3f1404bf
authored
Jun 10, 2010
by
Damjan Jovanovic
Committed by
Alexandre Julliard
Jun 11, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: CopyFile cannot overwrite a file with itself.
parent
97807760
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
path.c
dlls/kernel32/path.c
+1
-1
file.c
dlls/kernel32/tests/file.c
+12
-0
No files found.
dlls/kernel32/path.c
View file @
3f1404bf
...
...
@@ -911,7 +911,7 @@ BOOL WINAPI CopyFileW( LPCWSTR source, LPCWSTR dest, BOOL fail_if_exists )
return
FALSE
;
}
if
((
h2
=
CreateFileW
(
dest
,
GENERIC_WRITE
,
FILE_SHARE_READ
|
FILE_SHARE_WRITE
,
NULL
,
if
((
h2
=
CreateFileW
(
dest
,
GENERIC_WRITE
,
FILE_SHARE_READ
,
NULL
,
fail_if_exists
?
CREATE_NEW
:
CREATE_ALWAYS
,
info
.
dwFileAttributes
,
h1
))
==
INVALID_HANDLE_VALUE
)
{
...
...
dlls/kernel32/tests/file.c
View file @
3f1404bf
...
...
@@ -598,6 +598,10 @@ static void test_CopyFileA(void)
ok
(
retok
&&
ret
==
sizeof
(
prefix
),
"WriteFile error %d
\n
"
,
GetLastError
());
ok
(
GetFileSize
(
hfile
,
NULL
)
==
sizeof
(
prefix
),
"source file has wrong size
\n
"
);
/* copying a file to itself must fail */
retok
=
CopyFileA
(
source
,
source
,
FALSE
);
ok
(
!
retok
&&
(
GetLastError
()
==
ERROR_SHARING_VIOLATION
||
broken
(
GetLastError
()
==
ERROR_FILE_EXISTS
)
/* Win 9x */
),
"copying a file to itself didn't fail (ret=%d, err=%d)
\n
"
,
retok
,
GetLastError
());
/* get the file time and change it to prove the difference */
ret
=
GetFileTime
(
hfile
,
NULL
,
NULL
,
&
ft1
);
ok
(
ret
,
"GetFileTime error %d
\n
"
,
GetLastError
());
...
...
@@ -618,6 +622,14 @@ static void test_CopyFileA(void)
ret
=
CopyFileA
(
source
,
dest
,
FALSE
);
ok
(
ret
,
"CopyFileA: error %d
\n
"
,
GetLastError
());
/* destination file is write-locked during copy */
hfile
=
CreateFileA
(
dest
,
GENERIC_WRITE
,
FILE_SHARE_READ
,
NULL
,
OPEN_EXISTING
,
0
,
0
);
ok
(
hfile
!=
INVALID_HANDLE_VALUE
,
"failed to open destination file, error %d
\n
"
,
GetLastError
());
retok
=
CopyFileA
(
source
,
dest
,
FALSE
);
ok
(
!
retok
&&
GetLastError
()
==
ERROR_SHARING_VIOLATION
,
"copying to a write-locked file didn't fail (ret=%d, err=%d)
\n
"
,
ret
,
GetLastError
());
CloseHandle
(
hfile
);
/* make sure that destination has correct size */
hfile
=
CreateFileA
(
dest
,
GENERIC_READ
,
FILE_SHARE_READ
,
NULL
,
OPEN_EXISTING
,
0
,
0
);
ok
(
hfile
!=
INVALID_HANDLE_VALUE
,
"failed to open destination file
\n
"
);
...
...
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