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
bb9bede0
Commit
bb9bede0
authored
Aug 17, 2022
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 17, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wow64win: Fix returning strings in NtUserGetIconInfo thunk.
parent
c2accdb1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
user.c
dlls/wow64win/user.c
+10
-2
No files found.
dlls/wow64win/user.c
View file @
bb9bede0
...
...
@@ -1981,8 +1981,16 @@ NTSTATUS WINAPI wow64_NtUserGetIconInfo( UINT *args )
info32
->
yHotspot
=
info
.
yHotspot
;
info32
->
hbmMask
=
HandleToUlong
(
info
.
hbmMask
);
info32
->
hbmColor
=
HandleToUlong
(
info
.
hbmColor
);
if
(
module32
)
module32
->
Length
=
module
.
Length
;
if
(
res_name32
)
res_name32
->
Length
=
res_name
.
Length
;
if
(
module32
)
{
module32
->
Buffer
=
PtrToUlong
(
module
.
Buffer
);
module32
->
Length
=
module
.
Length
;
}
if
(
res_name32
)
{
res_name32
->
Buffer
=
PtrToUlong
(
res_name
.
Buffer
);
res_name32
->
Length
=
res_name
.
Length
;
}
return
TRUE
;
}
...
...
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