| Index: third_party/harfbuzz-ng/src/hb-ot-font.cc
|
| diff --git a/third_party/harfbuzz-ng/src/hb-ot-font.cc b/third_party/harfbuzz-ng/src/hb-ot-font.cc
|
| index df01bc9fabbc4ab0c4e912cf135d4890e8f03bdc..5be055d3447550aadb7f1eba870dd39a29ca8bb0 100644
|
| --- a/third_party/harfbuzz-ng/src/hb-ot-font.cc
|
| +++ b/third_party/harfbuzz-ng/src/hb-ot-font.cc
|
| @@ -355,7 +355,11 @@ struct hb_ot_face_cmap_accelerator_t
|
| if (!subtable) subtable = cmap->find_subtable (0, 2);
|
| if (!subtable) subtable = cmap->find_subtable (0, 1);
|
| if (!subtable) subtable = cmap->find_subtable (0, 0);
|
| - if (!subtable)(subtable = cmap->find_subtable (3, 0)) && (symbol = true);
|
| + if (!subtable)
|
| + {
|
| + subtable = cmap->find_subtable (3, 0);
|
| + if (subtable) symbol = true;
|
| + }
|
| /* Meh. */
|
| if (!subtable) subtable = &OT::Null(OT::CmapSubtable);
|
|
|
|
|