From 2dc8e3f470d7c0b579f867605b8bf40688bc5722 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 23 Jul 2015 10:07:21 +0100 Subject: [PATCH] [ot] Add missing return! --- src/hb-ot-layout-gsubgpos-private.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-ot-layout-gsubgpos-private.hh b/src/hb-ot-layout-gsubgpos-private.hh index 99c4c83..e14b5b6 100644 --- a/src/hb-ot-layout-gsubgpos-private.hh +++ b/src/hb-ot-layout-gsubgpos-private.hh @@ -719,7 +719,7 @@ static inline bool match_input (hb_apply_context_t *c, { TRACE_APPLY (NULL); - if (unlikely (count > MAX_CONTEXT_LENGTH)) TRACE_RETURN (false); + if (unlikely (count > MAX_CONTEXT_LENGTH)) return TRACE_RETURN (false); hb_buffer_t *buffer = c->buffer; -- 2.7.4