diff options
author | YoungHun Kim <yh8004.kim@samsung.com> | 2021-10-15 09:42:52 +0900 |
---|---|---|
committer | YoungHun Kim <yh8004.kim@samsung.com> | 2022-01-18 12:39:11 +0900 |
commit | 57212bc2f6eb15cc880b8d1b39afaa3be4fdb3c2 (patch) | |
tree | 6a02e1bad070a5a682bf49ea0f4c7ee7bbb6a69e | |
parent | 0e69c128957392b868cab2590cbb66e2a3dc84b1 (diff) | |
download | murphy-tizen_6.5.tar.gz murphy-tizen_6.5.tar.bz2 murphy-tizen_6.5.zip |
Fix Uninitialized scalar variable (UNINIT)submit/tizen_6.5/20220118.034649accepted/tizen/6.5/unified/20220119.122050tizen_6.5accepted/tizen_6.5_unified
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) |