eio_test_manager: Fix unchecked return value

Small patch to check return value of eina_value_convert reported by
Coverity

Fixes CID1400976
This commit is contained in:
Christopher Michael 2021-02-25 09:33:42 -05:00
parent 359435bed9
commit 3e5629f125
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ _done_cb(void *data,
unsigned long files_count = 0;
eina_value_setup(&convert, EINA_VALUE_TYPE_ULONG);
eina_value_convert(&file, &convert);
fail_if(eina_value_convert(&file, &convert) != EINA_TRUE);
fail_unless(eina_value_ulong_get(&convert, &files_count));
fail_if((*number_of_listed_files) != test_count);