From: Martin Matuska Date: Mon, 20 May 2019 11:24:59 +0000 (+0200) Subject: contrib/archivetest: report archive_error_string() on error X-Git-Tag: v3.4.0~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5818e39e128eca4951e2ab10467d4d850a2ba57;p=thirdparty%2Flibarchive.git contrib/archivetest: report archive_error_string() on error --- diff --git a/contrib/archivetest.c b/contrib/archivetest.c index f4a469b4a..8002039ee 100644 --- a/contrib/archivetest.c +++ b/contrib/archivetest.c @@ -197,7 +197,8 @@ int main(int argc, char *argv[]) while ((r = archive_read_data(a, buffer, 4096) > 0)) ; if (r == ARCHIVE_FATAL) { - v_print(v, "ERROR\n"); + v_print(v, "ERROR\nError string: %s\n", + archive_error_string(a)); break; } v_print(v, "OK"); @@ -205,10 +206,13 @@ int main(int argc, char *argv[]) v_print(v, "\n"); c++; } - archive_read_free(a); v_print(v, "Last return code: %s (%d)\n", errnostr(r), r); - if (r == ARCHIVE_EOF || r == ARCHIVE_OK) + if (r == ARCHIVE_EOF || r == ARCHIVE_OK) { + archive_read_free(a); exit(0); + } + v_print(v, "Error string: %s\n", archive_error_string(a)); + archive_read_free(a); exit(2); }