From: Sangyoon Jang Date: Mon, 12 May 2025 05:47:32 +0000 (+0900) Subject: Fix use after move X-Git-Tag: accepted/tizen/unified/20250514.114137~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ba9dc944795f974c600282ac371f766bf24d76cb;p=platform%2Fcore%2Fappfw%2Ftizen-action.git Fix use after move Signed-off-by: Sangyoon Jang --- diff --git a/src/common/action_schema.cc b/src/common/action_schema.cc index cb39159..63a3777 100644 --- a/src/common/action_schema.cc +++ b/src/common/action_schema.cc @@ -113,7 +113,7 @@ ActionSchema::ActionSchema(std::string json_str) } catch (const std::runtime_error& e) { // TODO: how to handle invalid json case? LOG(ERROR) << "Failed to parse json string: " << e.what(); - LOG(ERROR) << json_str; + LOG(ERROR) << json_str_; } }