projects
/
platform
/
core
/
appfw
/
amd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c4fb58
)
Fix static analysis issues
author
Changgyu Choi
<changyu.choi@samsung.com>
Thu, 25 May 2023 01:53:40 +0000
(10:53 +0900)
committer
Changgyu Choi
<changyu.choi@samsung.com>
Thu, 25 May 2023 02:30:17 +0000
(11:30 +0900)
Changes:
- Initializes an uninitialized value.
Change-Id: If42120f2712782edfaa4aa0b83e959b33e761ea3
Signed-off-by: Changgyu Choi <changyu.choi@samsung.com>
src/lib/boot_sequencer/app_info.hh
patch
|
blob
|
history
diff --git
a/src/lib/boot_sequencer/app_info.hh
b/src/lib/boot_sequencer/app_info.hh
index 72dd6ee66a0a77bf1f380f80fe8a94ddadd2d8b9..c4c270765df6bfe6a8c4820bd877397857b9d6f2 100644
(file)
--- a/
src/lib/boot_sequencer/app_info.hh
+++ b/
src/lib/boot_sequencer/app_info.hh
@@
-150,7
+150,7
@@
class AppInfo {
private:
std::string appid_;
uid_t uid_;
- int priority_;
+ int priority_
= 0
;
std::set<std::string> after_;
std::set<std::string> before_;
std::set<std::string> requires_;