summaryrefslogtreecommitdiff
path: root/external/harfbuzz/ubsan.patch
blob: c5f923448c8e1ba7859cb265c99abef2c615dd20 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- src/hb-ot-font.cc
+++ src/hb-ot-font.cc
@@ -138,7 +138,7 @@
 	return this->default_advance;
     }
 
-    return this->table->longMetric[MIN (glyph, (uint32_t) this->num_advances - 1)].advance
+    return static_cast<OT::LongMetric const *>(this->table->longMetric)[MIN (glyph, (uint32_t) this->num_advances - 1)].advance
 	 + this->var->get_advance_var (glyph, font->coords, font->num_coords); // TODO Optimize?!
   }
 };