From aeddac84a1c7d2e0358d86dcdb9b9d7c28bd744a Mon Sep 17 00:00:00 2001
From: "Piotr Kosko/Tizen API (PLT) /SRPOL/Engineer/Samsung Electronics"
Date: Wed, 14 Dec 2022 17:22:07 +0100
Subject: [PATCH] [Common] Fixed typo
[Verification] Code compiles without errors
Change-Id: I97f5aa9394590b5fa963caef8811ebfea16670fd
(cherry picked from commit f05c79cf121c2f4f4fd91145d70ccf9da64a4b1b)
---
src/utils/utils_instance.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/utils/utils_instance.h b/src/utils/utils_instance.h
index 71f013df..befc4f9f 100644
--- a/src/utils/utils_instance.h
+++ b/src/utils/utils_instance.h
@@ -18,7 +18,8 @@ class UtilsInstance : public common::ParsedInstance {
virtual ~UtilsInstance() {
// At this point, frame of the page is destroyed or reloaded, so all the jobs have to be
// removed.
- if (!is_webworker_) {
+ if (!is_web_worker_)
+ {
common::TaskQueue::GetInstance().DeleteJobs();
}
}
--
2.34.1