From 8790b2740a334f1789fb0cf329f2b8ac9733793c Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 6 Nov 2018 10:24:54 -0500 Subject: [PATCH] [fuzzing] Fix test --- test/fuzzing/hb-shape-fuzzer.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/fuzzing/hb-shape-fuzzer.cc b/test/fuzzing/hb-shape-fuzzer.cc index ec69d514d..70ad08b45 100644 --- a/test/fuzzing/hb-shape-fuzzer.cc +++ b/test/fuzzing/hb-shape-fuzzer.cc @@ -33,10 +33,10 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) hb_buffer_guess_segment_properties (buffer); hb_shape (font, buffer, NULL, 0); hb_buffer_destroy (buffer); - } - /* Misc calls on face. */ - test_face (face, text32[15]); + /* Misc calls on face. */ + test_face (face, text32[15]); + } hb_font_destroy (font); hb_face_destroy (face);