diff options
author | YoungHun Kim <yh8004.kim@samsung.com> | 2021-10-15 09:42:52 +0900 |
---|---|---|
committer | YoungHun Kim <yh8004.kim@samsung.com> | 2021-10-15 09:43:55 +0900 |
commit | 5e7983c52c9a1e8a8de11522079c69bfefd70eb2 (patch) | |
tree | 6a02e1bad070a5a682bf49ea0f4c7ee7bbb6a69e | |
parent | 03faaf7ed2c923c355b91684f33fa951f58134cb (diff) | |
download | murphy-5e7983c52c9a1e8a8de11522079c69bfefd70eb2.tar.gz murphy-5e7983c52c9a1e8a8de11522079c69bfefd70eb2.tar.bz2 murphy-5e7983c52c9a1e8a8de11522079c69bfefd70eb2.zip |
Fix Uninitialized scalar variable (UNINIT)submit/tizen/20211028.024042submit/tizen/20211015.034311accepted/tizen/unified/20211029.132555
Change-Id: I53708468d973ff7abb3d69959e8b0dcd0d538809
-rw-r--r-- | packaging/murphy.spec | 2 | ||||
-rw-r--r-- | src/common/tests/hash-test.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/packaging/murphy.spec b/packaging/murphy.spec index 7f8d9e3..97e272a 100644 --- a/packaging/murphy.spec +++ b/packaging/murphy.spec @@ -29,7 +29,7 @@ Summary: Resource policy framework Name: murphy Version: 0.0.75 -Release: 22 +Release: 23 License: BSD-3-Clause Group: System/Service URL: http://01.org/murphy/ diff --git a/src/common/tests/hash-test.c b/src/common/tests/hash-test.c index 6195775..b85ffd6 100644 --- a/src/common/tests/hash-test.c +++ b/src/common/tests/hash-test.c @@ -354,6 +354,7 @@ test_run(void) cfg.hash = hash_func; cfg.comp = cmp_func; cfg.free = NULL; + cfg.nentry = 0; test.ht = hash_tbl_create(&cfg); if (test.ht == NULL) |