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
0f75796a
Commit
0f75796a
authored
Jul 11, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Jul 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Remove unneeded address-of operators from array names.
parent
da1a84f6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
msi.c
dlls/msi/msi.c
+1
-1
suminfo.c
dlls/msi/suminfo.c
+1
-1
No files found.
dlls/msi/msi.c
View file @
0f75796a
...
@@ -2846,7 +2846,7 @@ UINT WINAPI MsiGetFileHashW( LPCWSTR szFilePath, DWORD dwOptions,
...
@@ -2846,7 +2846,7 @@ UINT WINAPI MsiGetFileHashW( LPCWSTR szFilePath, DWORD dwOptions,
MD5Final
(
&
ctx
);
MD5Final
(
&
ctx
);
UnmapViewOfFile
(
p
);
UnmapViewOfFile
(
p
);
memcpy
(
pHash
->
dwData
,
&
ctx
.
digest
,
sizeof
pHash
->
dwData
);
memcpy
(
pHash
->
dwData
,
ctx
.
digest
,
sizeof
pHash
->
dwData
);
r
=
ERROR_SUCCESS
;
r
=
ERROR_SUCCESS
;
}
}
CloseHandle
(
mapping
);
CloseHandle
(
mapping
);
...
...
dlls/msi/suminfo.c
View file @
0f75796a
...
@@ -443,7 +443,7 @@ MSISUMMARYINFO *MSI_GetSummaryInformationW( IStorage *stg, UINT uiUpdateCount )
...
@@ -443,7 +443,7 @@ MSISUMMARYINFO *MSI_GetSummaryInformationW( IStorage *stg, UINT uiUpdateCount )
if
(
!
si
)
if
(
!
si
)
return
si
;
return
si
;
memset
(
&
si
->
property
,
0
,
sizeof
si
->
property
);
memset
(
si
->
property
,
0
,
sizeof
si
->
property
);
si
->
update_count
=
uiUpdateCount
;
si
->
update_count
=
uiUpdateCount
;
IStorage_AddRef
(
stg
);
IStorage_AddRef
(
stg
);
si
->
storage
=
stg
;
si
->
storage
=
stg
;
...
...
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