diff options
author | Youngjae Shin <yj99.shin@samsung.com> | 2023-03-14 19:37:49 +0900 |
---|---|---|
committer | Youngjae Shin <yj99.shin@samsung.com> | 2023-03-14 19:38:19 +0900 |
commit | b0efcdc6c45486d59dea1b728740ca3d6cf4827b (patch) | |
tree | 8232e1899884a276732ee05a9cd618fc96f91146 | |
parent | 43a4c420366ae9ccd907fb0e0ce0f55ca9269081 (diff) | |
download | modes-plugins-tizen_8.0.tar.gz modes-plugins-tizen_8.0.tar.bz2 modes-plugins-tizen_8.0.zip |
fix static analysis bugstizen_8.0_m2_releaseaccepted/tizen/unified/20230315.093504accepted/tizen/8.0/unified/20231005.093823tizen_8.0accepted/tizen_8.0_unified
Change-Id: I31e321ab6bfe8bac3b72c8aaaeba2092edfe3f80
-rw-r--r-- | display/DisplayBrightness.cpp | 2 | ||||
-rw-r--r-- | packaging/modes-plugins.spec | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/display/DisplayBrightness.cpp b/display/DisplayBrightness.cpp index fe07ae1..b2b2954 100644 --- a/display/DisplayBrightness.cpp +++ b/display/DisplayBrightness.cpp @@ -31,7 +31,7 @@ const std::string DisplayBrightness::NAME = "brightness"; const char *const DisplayBrightness::KEY = VCONFKEY_SETAPPL_LCD_BRIGHTNESS; DisplayBrightness::DisplayBrightness() - : PluginAction(NAME), requestVal(0), cb(nullptr), cbData(nullptr) + : PluginAction(NAME), numDisplay(0), requestVal(0), cb(nullptr), cbData(nullptr) { device_display_get_numbers(&numDisplay); } diff --git a/packaging/modes-plugins.spec b/packaging/modes-plugins.spec index eaa1d37..549b103 100644 --- a/packaging/modes-plugins.spec +++ b/packaging/modes-plugins.spec @@ -99,7 +99,7 @@ mkdir -p "$gcno_obj_dir" find . -name '*.gcno' -exec cp --parents '{}' "$gcno_obj_dir" ';' %endif -# ڵ unittest ǥ ũƮ +# 자동 unittest 실행을 위한 표준 실행 스크립트 cat << EOF > run-unittest.sh #!/bin/sh setup() { |