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
3ffe6ab0
Commit
3ffe6ab0
authored
Aug 22, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 24, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dwrite: Handle failure when getting texture bounds (Coverity).
parent
1684a0b6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
gdiinterop.c
dlls/dwrite/gdiinterop.c
+4
-0
No files found.
dlls/dwrite/gdiinterop.c
View file @
3ffe6ab0
...
@@ -401,6 +401,10 @@ static HRESULT WINAPI rendertarget_DrawGlyphRun(IDWriteBitmapRenderTarget1 *ifac
...
@@ -401,6 +401,10 @@ static HRESULT WINAPI rendertarget_DrawGlyphRun(IDWriteBitmapRenderTarget1 *ifac
hr
=
IDWriteGlyphRunAnalysis_GetAlphaTextureBounds
(
analysis
,
DWRITE_TEXTURE_ALIASED_1x1
,
&
bounds
);
hr
=
IDWriteGlyphRunAnalysis_GetAlphaTextureBounds
(
analysis
,
DWRITE_TEXTURE_ALIASED_1x1
,
&
bounds
);
if
(
FAILED
(
hr
)
||
IsRectEmpty
(
&
bounds
))
{
if
(
FAILED
(
hr
)
||
IsRectEmpty
(
&
bounds
))
{
hr
=
IDWriteGlyphRunAnalysis_GetAlphaTextureBounds
(
analysis
,
DWRITE_TEXTURE_CLEARTYPE_3x1
,
&
bounds
);
hr
=
IDWriteGlyphRunAnalysis_GetAlphaTextureBounds
(
analysis
,
DWRITE_TEXTURE_CLEARTYPE_3x1
,
&
bounds
);
if
(
FAILED
(
hr
))
{
WARN
(
"GetAlphaTextureBounds() failed, 0x%08x
\n
"
,
hr
);
return
hr
;
}
texturetype
=
DWRITE_TEXTURE_CLEARTYPE_3x1
;
texturetype
=
DWRITE_TEXTURE_CLEARTYPE_3x1
;
}
}
...
...
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