Skip to content

Commit 46c0646

Browse files
ni4ronaldtse
authored andcommitted
Fix CID #1610089: unchecked return value.
1 parent 7a9264c commit 46c0646

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rnp/fficli.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2034,7 +2034,7 @@ cli_rnp_t::key_matching(const std::string &str, int flags, size_t *count)
20342034
{
20352035
std::vector<rnp_key_handle_t> keys;
20362036

2037-
keys_matching(keys, str, flags);
2037+
(void) keys_matching(keys, str, flags);
20382038
if (count) {
20392039
*count = keys.size();
20402040
}

0 commit comments

Comments
 (0)