Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(205)

Unified Diff: third_party/ots/src/gsub.cc

Issue 1487543005: Update OTS to revision 99a3b7f (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/ots/src/gpos.cc ('k') | third_party/ots/src/layout.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/ots/src/gsub.cc
diff --git a/third_party/ots/src/gsub.cc b/third_party/ots/src/gsub.cc
index decb871ac09b9221ac645943b9457f4dae27f374..9baf2e88bfd62d537dcec7d12227ba6e18cec8c4 100644
--- a/third_party/ots/src/gsub.cc
+++ b/third_party/ots/src/gsub.cc
@@ -528,13 +528,6 @@ bool ParseReverseChainingContextSingleSubstitution(
} // namespace
-#define DROP_THIS_TABLE(msg_) \
- do { \
- OTS_FAILURE_MSG(msg_ ", table discarded"); \
- font->gsub->data = 0; \
- font->gsub->length = 0; \
- } while (0)
-
namespace ots {
// As far as I checked, following fonts contain invalid values in GSUB table.
@@ -606,55 +599,47 @@ bool ots_gsub_parse(Font *font, const uint8_t *data, size_t length) {
!table.ReadU16(&offset_script_list) ||
!table.ReadU16(&offset_feature_list) ||
!table.ReadU16(&offset_lookup_list)) {
- DROP_THIS_TABLE("Incomplete table");
- return true;
+ return OTS_FAILURE_MSG("Incomplete table");
}
if (version != 0x00010000) {
- DROP_THIS_TABLE("Bad version");
- return true;
+ return OTS_FAILURE_MSG("Bad version");
}
if (offset_lookup_list) {
if (offset_lookup_list < kGsubHeaderSize || offset_lookup_list >= length) {
- DROP_THIS_TABLE("Bad lookup list offset in table header");
- return true;
+ return OTS_FAILURE_MSG("Bad lookup list offset in table header");
}
if (!ParseLookupListTable(font, data + offset_lookup_list,
length - offset_lookup_list,
&kGsubLookupSubtableParser,
&gsub->num_lookups)) {
- DROP_THIS_TABLE("Failed to parse lookup list table");
- return true;
+ return OTS_FAILURE_MSG("Failed to parse lookup list table");
}
}
uint16_t num_features = 0;
if (offset_feature_list) {
if (offset_feature_list < kGsubHeaderSize || offset_feature_list >= length) {
- DROP_THIS_TABLE("Bad feature list offset in table header");
- return true;
+ return OTS_FAILURE_MSG("Bad feature list offset in table header");
}
if (!ParseFeatureListTable(font, data + offset_feature_list,
length - offset_feature_list, gsub->num_lookups,
&num_features)) {
- DROP_THIS_TABLE("Failed to parse feature list table");
- return true;
+ return OTS_FAILURE_MSG("Failed to parse feature list table");
}
}
if (offset_script_list) {
if (offset_script_list < kGsubHeaderSize || offset_script_list >= length) {
- DROP_THIS_TABLE("Bad script list offset in table header");
- return true;
+ return OTS_FAILURE_MSG("Bad script list offset in table header");
}
if (!ParseScriptListTable(font, data + offset_script_list,
length - offset_script_list, num_features)) {
- DROP_THIS_TABLE("Failed to parse script list table");
- return true;
+ return OTS_FAILURE_MSG("Failed to parse script list table");
}
}
@@ -687,4 +672,3 @@ void ots_gsub_free(Font *font) {
} // namespace ots
#undef TABLE_NAME
-#undef DROP_THIS_TABLE
« no previous file with comments | « third_party/ots/src/gpos.cc ('k') | third_party/ots/src/layout.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698