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
17ac48b6
Commit
17ac48b6
authored
Mar 04, 2007
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Mar 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Avoid a needless goto.
parent
e8007d9d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
font.c
dlls/gdi32/font.c
+6
-6
No files found.
dlls/gdi32/font.c
View file @
17ac48b6
...
...
@@ -3223,14 +3223,14 @@ UINT WINAPI GetTextCharsetInfo(HDC hdc, LPFONTSIGNATURE fs, DWORD flags)
UINT
ret
=
DEFAULT_CHARSET
;
DC
*
dc
=
DC_GetDCPtr
(
hdc
);
if
(
!
dc
)
goto
done
;
if
(
dc
->
gdiFont
)
ret
=
WineEngGetTextCharsetInfo
(
dc
->
gdiFont
,
fs
,
flags
);
if
(
dc
)
{
if
(
dc
->
gdiFont
)
ret
=
WineEngGetTextCharsetInfo
(
dc
->
gdiFont
,
fs
,
flags
);
GDI_ReleaseObj
(
hdc
);
GDI_ReleaseObj
(
hdc
);
}
done:
if
(
ret
==
DEFAULT_CHARSET
&&
fs
)
memset
(
fs
,
0
,
sizeof
(
FONTSIGNATURE
));
return
ret
;
...
...
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