search for: bed5a03

Displaying 1 result from an estimated 1 matches for "bed5a03".

Did you mean: 2e5a03
2019 May 17
1
[nbdkit PATCH] truncate: Detect large image overflow with round-up
...using to start nbdkit because .config failed, vs. starting but being useless to a client because .open/.prepare failed). filters/truncate/truncate.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/filters/truncate/truncate.c b/filters/truncate/truncate.c index 6408c35..bed5a03 100644 --- a/filters/truncate/truncate.c +++ b/filters/truncate/truncate.c @@ -38,6 +38,7 @@ #include <string.h> #include <limits.h> #include <errno.h> +#include <inttypes.h> #include <nbdkit-filter.h> @@ -172,8 +173,14 @@ truncate_prepare (struct nbdkit_next_ops...