From 696c24fced77b152dda45f0bdbcf6411849bd8ab Mon Sep 17 00:00:00 2001 From: Tom Gundersen Date: Tue, 4 Nov 2014 16:19:26 +0100 Subject: [PATCH] test: fileio - make coverity happy Explicitly check the length of the read. Fixes CID#1250803. --- src/test/test-fileio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/test-fileio.c b/src/test/test-fileio.c index a713abde6..c26a6facb 100644 --- a/src/test/test-fileio.c +++ b/src/test/test-fileio.c @@ -342,7 +342,7 @@ static void test_write_string_file_no_create(void) { assert_se(write_string_file_no_create("/a/file/which/does/not/exists/i/guess", "boohoo") < 0); assert_se(write_string_file_no_create(fn, "boohoo") == 0); - assert_se(read(fd, buf, sizeof(buf))); + assert_se(read(fd, buf, sizeof(buf)) == strlen("boohoo\n")); assert_se(streq(buf, "boohoo\n")); unlink(fn); -- 2.30.2