Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
b6dae78b
Commit
b6dae78b
authored
May 25, 2004
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
May 25, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid a failure under Win9x.
parent
c4a5c735
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
file.c
dlls/kernel/tests/file.c
+2
-1
No files found.
dlls/kernel/tests/file.c
View file @
b6dae78b
...
...
@@ -780,7 +780,8 @@ static void test_MoveFileA(void)
/* FIXME: if we create a file with wildcards we can't delete it now that DeleteFile works correctly */
ret
=
MoveFileA
(
source
,
dest
);
ok
(
!
ret
,
"MoveFileA: shouldn't move to wildcard file
\n
"
);
ok
(
GetLastError
()
==
ERROR_INVALID_NAME
,
ok
(
GetLastError
()
==
ERROR_INVALID_NAME
||
/* NT */
GetLastError
()
==
ERROR_FILE_NOT_FOUND
,
/* Win9x */
"MoveFileA: with wildcards, unexpected error %ld
\n
"
,
GetLastError
());
if
(
ret
||
(
GetLastError
()
!=
ERROR_INVALID_NAME
))
{
...
...
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