Remove this==NULL check from face->reference_table()
Not supposed to happen, and apparently this is undefined in C++. https://code.google.com/p/chromium/issues/detail?id=403594
This commit is contained in:
parent
cd7ea4f791
commit
cc3b2d432b
|
@ -66,7 +66,7 @@ struct hb_face_t {
|
||||||
{
|
{
|
||||||
hb_blob_t *blob;
|
hb_blob_t *blob;
|
||||||
|
|
||||||
if (unlikely (!this || !reference_table_func))
|
if (unlikely (!reference_table_func))
|
||||||
return hb_blob_get_empty ();
|
return hb_blob_get_empty ();
|
||||||
|
|
||||||
blob = reference_table_func (/*XXX*/const_cast<hb_face_t *> (this), tag, user_data);
|
blob = reference_table_func (/*XXX*/const_cast<hb_face_t *> (this), tag, user_data);
|
||||||
|
|
Loading…
Reference in New Issue