From fd5c9f1259d0191af57b20f06dda35e62acb6275 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Tue, 13 Jun 2023 23:44:19 +0200 Subject: Overhaul sqfs_istream_t/sqfs_ostream_t error handling Report an error number from the implementations, change the users to forward that error number (which also means libtar write header/link now returns an error code) and all subsequent binaries to use sqfs_perror() instead of relying on the function to print an error internally. Also, make sure to preserve errno/GetLastError() in the implementations and print out a stringified error in sqfs_perror() if the error code indicates an I/O error. Signed-off-by: David Oberhollenzer --- lib/util/test/str_table.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/util/test') diff --git a/lib/util/test/str_table.c b/lib/util/test/str_table.c index 75658ef..4a62b59 100644 --- a/lib/util/test/str_table.c +++ b/lib/util/test/str_table.c @@ -21,7 +21,8 @@ static int read_strings(void) char *line; int i; - fp = istream_open_file("words.txt"); + i = istream_open_file(&fp, "words.txt"); + TEST_EQUAL_I(i, 0); TEST_NOT_NULL(fp); for (i = 0; i < 1000; ++i) { -- cgit v1.2.3