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
47a939e2
Commit
47a939e2
authored
Nov 27, 2023
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 30, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32/emf: Use padding helper in GdiComment().
parent
30be9059
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
emfdc.c
dlls/gdi32/emfdc.c
+3
-4
No files found.
dlls/gdi32/emfdc.c
View file @
47a939e2
...
...
@@ -2514,20 +2514,19 @@ BOOL WINAPI GdiComment( HDC hdc, UINT bytes, const BYTE *buffer )
{
DC_ATTR
*
dc_attr
;
EMRGDICOMMENT
*
emr
;
UINT
total
,
rounded_size
;
UINT
total
;
BOOL
ret
;
if
(
!
(
dc_attr
=
get_dc_attr
(
hdc
))
||
!
get_dc_emf
(
dc_attr
))
return
FALSE
;
rounded_size
=
aligned_size
(
bytes
);
total
=
offsetof
(
EMRGDICOMMENT
,
Data
)
+
rounded_size
;
total
=
offsetof
(
EMRGDICOMMENT
,
Data
)
+
aligned_size
(
bytes
);
emr
=
HeapAlloc
(
GetProcessHeap
(),
0
,
total
);
emr
->
emr
.
iType
=
EMR_GDICOMMENT
;
emr
->
emr
.
nSize
=
total
;
emr
->
cbData
=
bytes
;
memset
(
&
emr
->
Data
[
bytes
],
0
,
rounded_size
-
bytes
);
memcpy
(
&
emr
->
Data
[
0
],
buffer
,
bytes
);
pad_record
(
&
emr
->
Data
[
0
],
bytes
);
ret
=
emfdc_record
(
get_dc_emf
(
dc_attr
),
&
emr
->
emr
);
...
...
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