mirror of
https://github.com/systemd/systemd.git
synced 2024-11-02 19:21:53 +03:00
test: hashmap-plain - make coverity happy
Check return value of hashmap_ensure_allocated(). CID#1250807.
This commit is contained in:
parent
696c24fced
commit
61c8175021
@ -246,7 +246,7 @@ static void test_hashmap_put(void) {
|
||||
int valid_hashmap_put;
|
||||
void *val1 = (void*) "val 1";
|
||||
|
||||
hashmap_ensure_allocated(&m, &string_hash_ops);
|
||||
assert_se(hashmap_ensure_allocated(&m, &string_hash_ops) >= 0);
|
||||
assert_se(m);
|
||||
|
||||
valid_hashmap_put = hashmap_put(m, "key 1", val1);
|
||||
|
Loading…
Reference in New Issue
Block a user