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
8a390c86
Commit
8a390c86
authored
Mar 28, 2015
by
Thomas Faber
Committed by
Alexandre Julliard
Mar 30, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Avoid uninitialized variable use in EnumEnhMetaFile (MSVC).
parent
966c5dff
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
enhmetafile.c
dlls/gdi32/enhmetafile.c
+3
-4
No files found.
dlls/gdi32/enhmetafile.c
View file @
8a390c86
...
...
@@ -2288,6 +2288,7 @@ BOOL WINAPI EnumEnhMetaFile(
SetLastError
(
ERROR_NOT_ENOUGH_MEMORY
);
return
FALSE
;
}
info
->
state
.
mode
=
MM_TEXT
;
info
->
state
.
wndOrgX
=
0
;
info
->
state
.
wndOrgY
=
0
;
info
->
state
.
wndExtX
=
1
;
...
...
@@ -2338,9 +2339,6 @@ BOOL WINAPI EnumEnhMetaFile(
old_arcdir
=
SetArcDirection
(
hdc
,
AD_COUNTERCLOCKWISE
);
old_polyfill
=
SetPolyFillMode
(
hdc
,
ALTERNATE
);
old_stretchblt
=
SetStretchBltMode
(
hdc
,
BLACKONWHITE
);
}
info
->
state
.
mode
=
MM_TEXT
;
if
(
IS_WIN9X
()
)
{
...
...
@@ -2397,13 +2395,14 @@ BOOL WINAPI EnumEnhMetaFile(
}
/* WinNT resets the current vp/win org/ext */
if
(
!
IS_WIN9X
()
&&
hdc
)
if
(
!
IS_WIN9X
()
)
{
SetMapMode
(
hdc
,
MM_TEXT
);
SetWindowOrgEx
(
hdc
,
0
,
0
,
NULL
);
SetViewportOrgEx
(
hdc
,
0
,
0
,
NULL
);
EMF_Update_MF_Xform
(
hdc
,
info
);
}
}
ret
=
TRUE
;
offset
=
0
;
...
...
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