I'm very pleased to announce the release of our new website and documentation using the new toolchain with Hugo and AsciiDoctor. To get more information about the new toolchain please read the FreeBSD Documentation Project Primer[1], Hugo docs[2] and AsciiDoctor docs[3]. Acknowledgment: Benedict Reuschling <bcr@> Glen Barber <gjb@> Hiroki Sato <hrs@> Li-Wen Hsu <lwhsu@> Sean Chittenden <seanc@> The FreeBSD Foundation [1] https://docs.FreeBSD.org/en/books/fdp-primer/ [2] https://gohugo.io/documentation/ [3] https://docs.asciidoctor.org/home/ Approved by: doceng, core
15 lines
592 B
Diff
15 lines
592 B
Diff
--- contrib/libarchive/libarchive/archive_write.c.orig
|
|
+++ contrib/libarchive/libarchive/archive_write.c
|
|
@@ -459,8 +459,12 @@
|
|
_archive_write_data(struct archive *_a, const void *buff, size_t s)
|
|
{
|
|
struct archive_write *a = (struct archive_write *)_a;
|
|
+ const size_t max_write = INT_MAX;
|
|
__archive_check_magic(&a->archive, ARCHIVE_WRITE_MAGIC,
|
|
ARCHIVE_STATE_DATA, "archive_write_data");
|
|
+ /* In particular, this catches attempts to pass negative values. */
|
|
+ if (s > max_write)
|
|
+ s = max_write;
|
|
archive_clear_error(&a->archive);
|
|
return ((a->format_write_data)(a, buff, s));
|
|
}
|