Add missing TRACE_RETURN

This commit is contained in:
Behdad Esfahbod 2015-07-23 10:08:48 +01:00
parent 2dc8e3f470
commit d99f50bde0
1 changed files with 1 additions and 1 deletions

View File

@ -2164,7 +2164,7 @@ struct ExtensionFormat1
{
TRACE_DISPATCH (this, format);
if (unlikely (!c->may_dispatch (this, this))) TRACE_RETURN (c->default_return_value ());
return get_subtable<typename T::LookupSubTable> ().dispatch (c, get_type ());
return TRACE_RETURN (get_subtable<typename T::LookupSubTable> ().dispatch (c, get_type ()));
}
/* This is called from may_dispatch() above with hb_sanitize_context_t. */