Skip to content

Commit aec0d9f

Browse files
committed
Pacify Coverity (CID #1700648)
1 parent 24f7801 commit aec0d9f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/util/dict_util.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@ fr_dict_filename_t *dict_filename_intern(fr_dict_t *dict, char const *filename)
759759

760760
by_id = talloc_realloc(dict, dict->filename_by_id, fr_dict_filename_t *, count + 1);
761761
if (unlikely(!by_id)) {
762-
fr_hash_table_delete(dict->filenames, file);
762+
(void) fr_hash_table_delete(dict->filenames, file);
763763
goto error;
764764
}
765765
by_id[count] = file;

0 commit comments

Comments
 (0)