From: Ebrahim Byagowi Date: Tue, 30 Jul 2019 13:01:34 +0000 (+0430) Subject: [cpal] port to dagger (#1887) X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8014ce198a09d20cb947e4a465c7d893a84c55be;p=platform%2Fupstream%2FlibHarfBuzzSharp.git [cpal] port to dagger (#1887) --- diff --git a/src/hb-ot-color-cpal-table.hh b/src/hb-ot-color-cpal-table.hh index 9ec2957..2d2fcf8 100644 --- a/src/hb-ot-color-cpal-table.hh +++ b/src/hb-ot-color-cpal-table.hh @@ -146,8 +146,9 @@ struct CPAL /* Always return numColors colors per palette even if it has out-of-bounds start index. */ unsigned int count = hb_min ((unsigned) hb_max ((int) (numColors - start_offset), 0), *color_count); *color_count = count; - for (unsigned int i = 0; i < count; i++) - colors[i] = segment_colors[i]; /* Bound-checked read. */ + + segment_colors + | hb_sink (hb_array (colors, count)) + ; } return numColors; }