| Index: third_party/harfbuzz-ng/src/hb-ot-map-private.hh
|
| diff --git a/third_party/harfbuzz-ng/src/hb-ot-map-private.hh b/third_party/harfbuzz-ng/src/hb-ot-map-private.hh
|
| index 0395c9c22ffbf048a35b6c179047c3528aca1937..b69e5344c143675a3959a0cc7798bfeecfcca7c1 100644
|
| --- a/third_party/harfbuzz-ng/src/hb-ot-map-private.hh
|
| +++ b/third_party/harfbuzz-ng/src/hb-ot-map-private.hh
|
| @@ -113,7 +113,7 @@ struct hb_ot_map_t
|
| assert (stage <= stages[table_index].len);
|
| unsigned int start = stage ? stages[table_index][stage - 1].last_lookup : 0;
|
| unsigned int end = stage < stages[table_index].len ? stages[table_index][stage].last_lookup : lookups[table_index].len;
|
| - *plookups = &lookups[table_index][start];
|
| + *plookups = end == start ? NULL : &lookups[table_index][start];
|
| *lookup_count = end - start;
|
| }
|
|
|
|
|