Skip to content

Commit 51ab7ab

Browse files
RDKEMW-6515: Scan and Fix coverity issues of Entservices and rdkservices-cpc (#462)
* RDKEMW-6515: Scan and Fix coverity issues of Entservices and rdkservices-cpc Reason for change: Fix Coverity identified issues in ENTServices-Infra Repo Test Procedure: Regression testing on effected plugins Risks: Low Signed-off-by:AkshayKumar_Gampa [email protected] * RDKEMW-6515: Scan and Fix coverity issues of Entservices and rdkservices-cpc Reason for change: Fix Coverity identified issues in ENTServices-Infra Repo Test Procedure: Regression testing on effected plugins Risks: Low Signed-off-by:AkshayKumar_Gampa [email protected] --------- Co-authored-by: Srikanth <[email protected]>
1 parent 232b903 commit 51ab7ab

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

apis/AppManager/IAppManager.h

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -27,32 +27,32 @@ namespace Exchange {
2727
#ifndef RUNTIME_CONFIG
2828
struct RuntimeConfig
2929
{
30-
bool dial;
31-
bool wanLanAccess;
32-
bool thunder;
33-
int32_t systemMemoryLimit;
34-
int32_t gpuMemoryLimit;
35-
std::string envVariables;
36-
uint32_t userId;
37-
uint32_t groupId;
38-
uint32_t dataImageSize;
39-
40-
bool resourceManagerClientEnabled;
30+
bool dial{false};
31+
bool wanLanAccess{false};
32+
bool thunder{false};
33+
int32_t systemMemoryLimit{0};
34+
int32_t gpuMemoryLimit{0};
35+
std::string envVariables{};
36+
uint32_t userId{0};
37+
uint32_t groupId{0};
38+
uint32_t dataImageSize{0};
39+
40+
bool resourceManagerClientEnabled{false};
4141
std::string dialId;
4242
std::string command;
4343
std::string appType;
4444
std::string appPath;
4545
std::string runtimePath;
4646

4747
std::string logFilePath;
48-
uint32_t logFileMaxSize;
48+
uint32_t logFileMaxSize{0};
4949
std::string logLevels; //json array of strings
50-
bool mapi;
50+
bool mapi {false};
5151
std::string fkpsFiles; //json array of strings
5252

5353
std::string fireboltVersion;
54-
bool enableDebugger;
55-
string unpackedPath;
54+
bool enableDebugger{false};
55+
std::string unpackedPath;
5656
};
5757
#define RUNTIME_CONFIG
5858
#endif

0 commit comments

Comments
 (0)