[buffer] Add assertions of buffer sync status to message_impl
This commit is contained in:
parent
da9edce84c
commit
c55c019771
|
@ -2116,8 +2116,16 @@ hb_buffer_set_message_func (hb_buffer_t *buffer,
|
||||||
bool
|
bool
|
||||||
hb_buffer_t::message_impl (hb_font_t *font, const char *fmt, va_list ap)
|
hb_buffer_t::message_impl (hb_font_t *font, const char *fmt, va_list ap)
|
||||||
{
|
{
|
||||||
|
assert (!have_output || (out_info == info && out_len == idx));
|
||||||
|
|
||||||
|
message_depth++;
|
||||||
|
|
||||||
char buf[100];
|
char buf[100];
|
||||||
vsnprintf (buf, sizeof (buf), fmt, ap);
|
vsnprintf (buf, sizeof (buf), fmt, ap);
|
||||||
return (bool) this->message_func (this, font, buf, this->message_data);
|
bool ret = (bool) this->message_func (this, font, buf, this->message_data);
|
||||||
|
|
||||||
|
message_depth--;
|
||||||
|
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -556,15 +556,11 @@ struct hb_buffer_t
|
||||||
if (likely (!messaging ()))
|
if (likely (!messaging ()))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
message_depth++;
|
|
||||||
|
|
||||||
va_list ap;
|
va_list ap;
|
||||||
va_start (ap, fmt);
|
va_start (ap, fmt);
|
||||||
bool ret = message_impl (font, fmt, ap);
|
bool ret = message_impl (font, fmt, ap);
|
||||||
va_end (ap);
|
va_end (ap);
|
||||||
|
|
||||||
message_depth--;
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue