Fix reverse_range() to only reverse alt array if positions are used
authorBehdad Esfahbod <behdad@behdad.org>
Tue, 3 Mar 2015 00:06:55 +0000 (16:06 -0800)
committerBehdad Esfahbod <behdad@behdad.org>
Tue, 3 Mar 2015 00:06:55 +0000 (16:06 -0800)
In hb-coretext, when we were using scratch buffer for book-keeping,
a reverse_range() caused by the notdef-insertion loop could mess up
our log_clusters.  Ouch!

src/hb-buffer.cc

index 0500aa2..942177c 100644 (file)
@@ -454,7 +454,7 @@ hb_buffer_t::reverse_range (unsigned int start,
     info[j] = t;
   }
 
-  if (pos) {
+  if (have_positions) {
     for (i = start, j = end - 1; i < j; i++, j--) {
       hb_glyph_position_t t;