Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
51804165
Commit
51804165
authored
Oct 31, 2011
by
Andrew Talbot
Committed by
Alexandre Julliard
Oct 31, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Remove unneeded address-of operators from array names.
parent
d2752363
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
region.c
dlls/gdiplus/region.c
+3
-3
No files found.
dlls/gdiplus/region.c
View file @
51804165
...
...
@@ -1420,7 +1420,7 @@ static GpStatus get_region_scans_data(GpRegion *region, GpMatrix *matrix, LPRGND
(
*
data
)
->
rdh
.
rcBound
.
left
=
(
*
data
)
->
rdh
.
rcBound
.
top
=
-
0x400000
;
(
*
data
)
->
rdh
.
rcBound
.
right
=
(
*
data
)
->
rdh
.
rcBound
.
bottom
=
0x400000
;
memcpy
(
&
(
*
data
)
->
Buffer
,
&
(
*
data
)
->
rdh
.
rcBound
,
sizeof
(
RECT
));
memcpy
((
*
data
)
->
Buffer
,
&
(
*
data
)
->
rdh
.
rcBound
,
sizeof
(
RECT
));
}
else
stat
=
OutOfMemory
;
...
...
@@ -1469,7 +1469,7 @@ GpStatus WINGDIPAPI GdipGetRegionScansI(GpRegion *region, GpRect *scans, INT *co
if
(
stat
==
Ok
)
{
*
count
=
data
->
rdh
.
nCount
;
rects
=
(
RECT
*
)
&
data
->
Buffer
;
rects
=
(
RECT
*
)
data
->
Buffer
;
if
(
scans
)
{
...
...
@@ -1503,7 +1503,7 @@ GpStatus WINGDIPAPI GdipGetRegionScans(GpRegion *region, GpRectF *scans, INT *co
if
(
stat
==
Ok
)
{
*
count
=
data
->
rdh
.
nCount
;
rects
=
(
RECT
*
)
&
data
->
Buffer
;
rects
=
(
RECT
*
)
data
->
Buffer
;
if
(
scans
)
{
...
...
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