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
5c85a243
Commit
5c85a243
authored
May 31, 2018
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
May 31, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mstask: Retry with a timeout if opening a job file has failed.
Signed-off-by:
Dmitry Timoshkov
<
dmitry@baikal.ru
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
bfb0474e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
5 deletions
+12
-5
task.c
dlls/mstask/task.c
+12
-5
No files found.
dlls/mstask/task.c
View file @
5c85a243
...
...
@@ -1398,7 +1398,7 @@ static HRESULT WINAPI MSTASK_IPersistFile_Load(IPersistFile *iface, LPCOLESTR fi
TaskImpl
*
This
=
impl_from_IPersistFile
(
iface
);
HRESULT
hr
;
HANDLE
file
,
mapping
;
DWORD
access
,
sharing
,
size
;
DWORD
access
,
sharing
,
size
,
try
;
void
*
data
;
TRACE
(
"(%p, %s, 0x%08x)
\n
"
,
iface
,
debugstr_w
(
file_name
),
mode
);
...
...
@@ -1432,11 +1432,18 @@ static HRESULT WINAPI MSTASK_IPersistFile_Load(IPersistFile *iface, LPCOLESTR fi
break
;
}
file
=
CreateFileW
(
file_name
,
access
,
sharing
,
NULL
,
OPEN_EXISTING
,
0
,
0
)
;
if
(
file
==
INVALID_HANDLE_VALUE
)
try
=
1
;
for
(;;
)
{
TRACE
(
"Failed to open %s, error %u
\n
"
,
debugstr_w
(
file_name
),
GetLastError
());
return
HRESULT_FROM_WIN32
(
GetLastError
());
file
=
CreateFileW
(
file_name
,
access
,
sharing
,
NULL
,
OPEN_EXISTING
,
0
,
0
);
if
(
file
!=
INVALID_HANDLE_VALUE
)
break
;
if
(
try
++
>=
3
)
{
TRACE
(
"Failed to open %s, error %u
\n
"
,
debugstr_w
(
file_name
),
GetLastError
());
return
HRESULT_FROM_WIN32
(
GetLastError
());
}
Sleep
(
100
);
}
size
=
GetFileSize
(
file
,
NULL
);
...
...
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