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
91e4394c
Commit
91e4394c
authored
Jun 23, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 24, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qmgr: Simplify GetProgress() with a structure copy.
parent
da5151fd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
7 deletions
+2
-7
file.c
dlls/qmgr/file.c
+1
-3
job.c
dlls/qmgr/job.c
+1
-4
No files found.
dlls/qmgr/file.c
View file @
91e4394c
...
...
@@ -122,9 +122,7 @@ static HRESULT WINAPI BackgroundCopyFile_GetProgress(
TRACE
(
"(%p)->(%p)
\n
"
,
file
,
pVal
);
EnterCriticalSection
(
&
file
->
owner
->
cs
);
pVal
->
BytesTotal
=
file
->
fileProgress
.
BytesTotal
;
pVal
->
BytesTransferred
=
file
->
fileProgress
.
BytesTransferred
;
pVal
->
Completed
=
file
->
fileProgress
.
Completed
;
*
pVal
=
file
->
fileProgress
;
LeaveCriticalSection
(
&
file
->
owner
->
cs
);
return
S_OK
;
...
...
dlls/qmgr/job.c
View file @
91e4394c
...
...
@@ -506,10 +506,7 @@ static HRESULT WINAPI BackgroundCopyJob_GetProgress(
return
E_INVALIDARG
;
EnterCriticalSection
(
&
This
->
cs
);
pVal
->
BytesTotal
=
This
->
jobProgress
.
BytesTotal
;
pVal
->
BytesTransferred
=
This
->
jobProgress
.
BytesTransferred
;
pVal
->
FilesTotal
=
This
->
jobProgress
.
FilesTotal
;
pVal
->
FilesTransferred
=
This
->
jobProgress
.
FilesTransferred
;
*
pVal
=
This
->
jobProgress
;
LeaveCriticalSection
(
&
This
->
cs
);
return
S_OK
;
...
...
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