From fbfba51003a5f22bc4b154457c43888ad3c2d69c Mon Sep 17 00:00:00 2001 From: Aleksandr Samoilov Date: Thu, 15 Feb 2024 16:13:34 +0300 Subject: [PATCH] Fix name for fuzzili Signed-off-by: Samoilov_Aleksandr --- runtime/builtins.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/builtins.cpp b/runtime/builtins.cpp index d1fb07ea7..d601c1e7f 100644 --- a/runtime/builtins.cpp +++ b/runtime/builtins.cpp @@ -1,5 +1,5 @@ /** - * Copyright (c) 2021-2022 Huawei Device Co., Ltd. + * Copyright (c) 2021-2024 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at @@ -239,7 +239,7 @@ void Builtins::Initialize(const JSHandle &env, JSThread *thread) thread_->ResetGuardians(); #ifdef FUZZING_FUZZILLI_BUILTIN - InitializeFuzzilli(env, obj_func_dynclass); + InitializeFuzzilli(env, objFuncDynclass); #endif } -- Gitee