提交 1b55077f 编写于 作者: B Behdad Esfahbod

[coretext] Remove unnecessary alt_size

Wasn't needed after a6b8dc87.
上级 10b1104d
......@@ -650,6 +650,7 @@ _hb_coretext_shape (hb_shape_plan_t *shape_plan,
if (0)
{
resize_and_retry:
DEBUG_MSG (CORETEXT, buffer, "Buffer resize");
/* string_ref uses the scratch-buffer for backing store, and line references
* string_ref (via attr_string). We must release those before resizing buffer. */
assert (string_ref);
......@@ -814,8 +815,7 @@ retry:
if (num_glyphs == 0)
continue;
unsigned int alt_size = (sizeof (CGGlyph) + sizeof (CGPoint) + sizeof (CFIndex)) / sizeof (hb_glyph_info_t) + 2;
if (!buffer->ensure (MAX (buffer->len + num_glyphs, alt_size)))
if (!buffer->ensure (buffer->len + num_glyphs))
goto resize_and_retry;
/* Testing used to indicate that CTRunGetGlyphsPtr, etc (almost?) always
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册