diff options
author | Martin Matuska <mm@FreeBSD.org> | 2016-12-15 15:35:53 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2016-12-15 15:35:53 +0000 |
commit | 8e86d3576b5d090c0d44d5fd2c4829fce64e3b34 (patch) | |
tree | 4d5481886c664d296875d9d996ccd3f5ae8090cb /cat | |
parent | f428c3b114eca361b2c069d987e95553368cd827 (diff) | |
download | src-8e86d3576b5d090c0d44d5fd2c4829fce64e3b34.tar.gz src-8e86d3576b5d090c0d44d5fd2c4829fce64e3b34.zip |
Update vendor/libarchive to git to 30528ed7a9f479f1c363ee8cfa1c5eb4c7d9be10
Vendor bugfixes:
PR 826: OpenSSL 1.1 support
PR 830, 831, 833: Spelling fixes
OSS-Fuzz 227, 230, 239: Fix possible memory leak in archive_read_free()
OSS-Fuzz 237: Fix heap buffer overflow when reading invalid ar archives
Notes
Notes:
svn path=/vendor/libarchive/dist/; revision=310115
Diffstat (limited to 'cat')
-rw-r--r-- | cat/bsdcat.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cat/bsdcat.c b/cat/bsdcat.c index 9ef75a6b476f..6ba103494342 100644 --- a/cat/bsdcat.c +++ b/cat/bsdcat.c @@ -142,5 +142,8 @@ main(int argc, char **argv) bsdcat_next(); } + if (a != NULL) + archive_read_free(a); + exit(exit_status); } |