Closed
Bug 745261
Opened 13 years ago
Closed 13 years ago
check calls to SetupCairoFont for failure
Categories
(Core :: Graphics: Text, defect)
Core
Graphics: Text
Tracking
()
RESOLVED
FIXED
mozilla14
People
(Reporter: jfkthame, Assigned: jfkthame)
Details
Attachments
(1 file)
|
5.03 KB,
patch
|
jtd
:
review+
|
Details | Diff | Splinter Review |
We have a number of places where we call gfxFont::SetupCairoFont(context) and then proceed on the assumption that the font has indeed been set up properly. We should check those calls for failure (the method returns a success/failure bool), and just bail out if something went wrong.
Attachment #614862 -
Flags: review?(jdaggett)
Comment 1•13 years ago
|
||
Comment on attachment 614862 [details] [diff] [review]
patch, bail out of whatever we're doing if SetupCairoFont fails
This seems fine but I think the warning should take place everywhere
SetupCairoFont fails, for example in the several calls within various
ShapeWord methods. I don't like the idea of failing quietly in some places.
| Assignee | ||
Comment 2•13 years ago
|
||
I didn't add those in all places because if ShapeWord returns false, its callers (e.g. gfxFont::GetShapedWord) already log a warning, so it seemed excessive amount to warn from within it as well.
Updated•13 years ago
|
Attachment #614862 -
Flags: review?(jdaggett) → review+
| Assignee | ||
Comment 3•13 years ago
|
||
Assignee: nobody → jfkthame
Target Milestone: --- → mozilla14
Comment 4•13 years ago
|
||
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•