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
1b092d70
Commit
1b092d70
authored
Jan 08, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jan 08, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fusion: Remove superfluous casts.
parent
581e3901
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
asmname.c
dlls/fusion/asmname.c
+2
-2
assembly.c
dlls/fusion/assembly.c
+1
-1
No files found.
dlls/fusion/asmname.c
View file @
1b092d70
...
...
@@ -150,7 +150,7 @@ static HRESULT WINAPI IAssemblyNameImpl_GetProperty(IAssemblyName *iface,
*
pcbProperty
=
0
;
if
(
name
->
name
)
{
lstrcpyW
(
(
LPWSTR
)
pvProperty
,
name
->
name
);
lstrcpyW
(
pvProperty
,
name
->
name
);
*
pcbProperty
=
(
lstrlenW
(
name
->
name
)
+
1
)
*
2
;
}
break
;
...
...
@@ -187,7 +187,7 @@ static HRESULT WINAPI IAssemblyNameImpl_GetProperty(IAssemblyName *iface,
*
pcbProperty
=
0
;
if
(
name
->
culture
)
{
lstrcpyW
(
(
LPWSTR
)
pvProperty
,
name
->
culture
);
lstrcpyW
(
pvProperty
,
name
->
culture
);
*
pcbProperty
=
(
lstrlenW
(
name
->
culture
)
+
1
)
*
2
;
}
break
;
...
...
dlls/fusion/assembly.c
View file @
1b092d70
...
...
@@ -153,7 +153,7 @@ static BYTE *GetData(BYTE *pData, ULONG *pLength)
static
VOID
*
assembly_data_offset
(
ASSEMBLY
*
assembly
,
ULONG
offset
)
{
return
(
VOID
*
)
&
assembly
->
data
[
offset
];
return
&
assembly
->
data
[
offset
];
}
#define MAX_TABLES_WORD 0xFFFF
...
...
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