Skip to content

Commit a06a140

Browse files
author
Hotaek Jung
committedNov 24, 2023
Fix coverity issue
:Release Notes: Fix coverity issue :Detailed Notes: Fix CID: 9574001, 9574002, 9574003, 9574004, 9574005, 9574006, 9574007 9574008, 9574011, 9574012, 9574013, 9574014, 9574015, 9574016 :Testing Performed: Local Test: OK :QA Notes: :Issues Addressed: [WRQ-1948] [RP] Fix static analysis #1 Change-Id: If9db38e54d4c44c2200da450b7ffb28d73ae50c6
1 parent 9d7223c commit a06a140

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed
 

‎src/bootd/core/Application.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ void Application::printInfo()
7272

7373
void Application::setAppId(string appId)
7474
{
75-
m_appId = appId;
75+
m_appId = std::move(appId);
7676
}
7777

7878
string& Application::getAppId()
@@ -89,7 +89,7 @@ void Application::setParams(JValue params) {
8989
"Params is not null: from(%s)->to(%s)",
9090
m_params.stringify().c_str(),
9191
params.stringify().c_str());
92-
m_params = params;
92+
m_params = std::move(params);
9393
}
9494

9595
JValue& Application::getParams()

‎src/bootd/event/DynamicEventDB.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ bool DynamicEventDB::getEventStatus(string eventName, JValue &extra)
7373

7474
bool DynamicEventDB::replaceEventsInfo(JValue &events, string origin, string &result)
7575
{
76-
result = origin;
76+
result = std::move(origin);
7777

7878
for (int i = 0; i < events.arraySize(); i++) {
7979
string pattern = "${" + events[i].asString() + "}";
@@ -165,7 +165,7 @@ bool DynamicEventDB::existEvent(GMainLoop* mainLoop, string eventName, int secon
165165
"EventCore waits event(%s)/timeout(%d)",
166166
eventName.c_str(), seconds);
167167

168-
m_existEvent = eventName;
168+
m_existEvent = std::move(eventName);
169169
m_waitEventTimeoutId = g_timeout_add_seconds(seconds, DynamicEventDB::_waitEventTimeout, this);
170170
m_isInLoop = true;
171171
while (m_isInLoop) {
@@ -192,7 +192,7 @@ bool DynamicEventDB::waitEvent(GMainLoop* mainLoop, string eventName, int second
192192
"EventCore waits event(%s)/timeout(%d)",
193193
eventName.c_str(), seconds);
194194

195-
m_waitEvent = eventName;
195+
m_waitEvent = std::move(eventName);
196196
m_waitEventTimeoutId = g_timeout_add_seconds(seconds, DynamicEventDB::_waitEventTimeout, this);
197197
m_isInLoop = true;
198198
while (m_isInLoop) {
@@ -276,7 +276,7 @@ bool DynamicEventDB::triggerEvent(string eventName, JValue extra)
276276
callEventListeners(eventName, TriggerEvent);
277277

278278
if (!m_asyncEventData.empty())
279-
callAsyncEventListeners(eventName);
279+
callAsyncEventListeners(std::move(eventName));
280280

281281
return true;
282282
}
@@ -303,7 +303,7 @@ bool DynamicEventDB::clearEvent(string eventName)
303303
m_waitEventTimeoutId = 0;
304304
m_isInLoop = false;
305305
}
306-
callEventListeners(eventName, ClearEvent);
306+
callEventListeners(std::move(eventName), ClearEvent);
307307
return true;
308308
}
309309

‎src/bootd/sequencer/DefaultBootSequencer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ void DefaultBootSequencer::doBoot()
8888
void DefaultBootSequencer::launchTargetApp(string appId, bool visible, bool keepAlive, int displayId)
8989
{
9090
Application application;
91-
application.setAppId(appId);
91+
application.setAppId(std::move(appId));
9292
application.setVisible(visible);
9393
application.setDisplayId(displayId);
9494

‎src/bootd/service/AbsService.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ bool AbsService::getServerStatus(Handle *handle, string serviceName)
5555
}
5656

5757
AbsService::AbsService(string name)
58-
: m_name(name),
58+
: m_name(std::move(name)),
5959
m_serverStatus()
6060
{
6161
}
@@ -91,7 +91,7 @@ bool AbsService::registerServerStatus(Handle *handle, ServerStatusCallback callb
9191
// TODO: Do we need to consider service on/off status in service classes?
9292
// If it is 'yes', we need to implement some logic for that
9393
// For example, subscriptions should be closed if service is down.
94-
m_callback = callback;
94+
m_callback = std::move(callback);
9595
m_serverStatus = handle->registerServerStatus(m_name.c_str(), m_callback);
9696
return true;
9797
}

‎src/bootd/service/BootManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ bool BootManager::generateSignal(LSMessage &message)
8282
goto Done;
8383
}
8484

85-
DynamicEventDB::instance()->triggerEvent(name);
85+
DynamicEventDB::instance()->triggerEvent(std::move(name));
8686

8787
if (!m_bootManagerListener->onGenerateSignal(requestPayload)) {
8888
errorText = "onGenerateSignal fails";

‎src/bootd/util/Command.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include "Command.h"
2525

2626
Command::Command(string command)
27-
: m_comm(command),
27+
: m_comm(std::move(command)),
2828
m_args(),
2929
m_pid(-1),
3030
m_status(-1),

‎src/bootd/util/JUtil.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ pbnjson::JValue JUtil::parseFile(const char *file)
4747

4848
void JUtil::getValueWithKeys(JValue root, JValue keys, JValue &value)
4949
{
50-
JValue current = root;
50+
JValue current = std::move(root);
5151
std::string subKey;
5252

5353
for (int i = 0; i < keys.arraySize(); i++) {
@@ -62,7 +62,7 @@ void JUtil::getValueWithKeys(JValue root, JValue keys, JValue &value)
6262
}
6363
}
6464

65-
value = current;
65+
value = std::move(current);
6666
}
6767

6868
bool JUtil::isNotNull(JValue &value)

0 commit comments

Comments
 (0)
Please sign in to comment.