From c4c57ed8c080615b104ae4aa1cb708614a0947c6 Mon Sep 17 00:00:00 2001 From: youbing54 Date: Tue, 24 Sep 2024 09:43:34 +0800 Subject: [PATCH] IssueNo: https://gitee.com/openharmony/arkui_ace_engine_lite/issues/IAT62F describe: bindedView is nullptr Feature or Bugfix: Bugfix Binary Source:Yes Signed-off-by: youbing54 --- frameworks/src/core/components/component.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/frameworks/src/core/components/component.cpp b/frameworks/src/core/components/component.cpp index b7c8bad5..bf7b67ba 100644 --- a/frameworks/src/core/components/component.cpp +++ b/frameworks/src/core/components/component.cpp @@ -1962,6 +1962,7 @@ jerry_value_t Component::HandleRotationRequest(const jerry_value_t func, UNUSED(func); UIView *bindedView = ComponentUtils::GetViewFromBindingObject(dom); if (bindedView == nullptr) { + HILOG_ERROR(HILOG_MODULE_ACE, "bindedView is nullptr"); return UNDEFINED; } -- Gitee