Displaying 3 results from an estimated 3 matches for "04c82842".
Did you mean:
042842
2020 Aug 06
2
[PATCH nbdkit] Experiment with parallel python plugin
...(b, handle, zero_buffer, limit, offset, flags, err);
if (r == -1)
break;
count -= limit;
}
+ free(zero_buffer);
+
done:
if (r != -1 && need_flush)
r = plugin_flush (b, handle, 0, err);
diff --git a/server/threadlocal.c b/server/threadlocal.c
index 90230028..04c82842 100644
--- a/server/threadlocal.c
+++ b/server/threadlocal.c
@@ -195,13 +195,16 @@ threadlocal_buffer (size_t size)
if (threadlocal->buffer_size < size) {
void *ptr;
+ int err;
- ptr = realloc (threadlocal->buffer, size);
- if (ptr == NULL) {
+ err = posix_memalign...
2020 Aug 06
0
[PATCH nbdkit] Experiment with parallel python plugin
...(b, handle, zero_buffer, limit, offset, flags, err);
if (r == -1)
break;
count -= limit;
}
+ free(zero_buffer);
+
done:
if (r != -1 && need_flush)
r = plugin_flush (b, handle, 0, err);
diff --git a/server/threadlocal.c b/server/threadlocal.c
index 90230028..04c82842 100644
--- a/server/threadlocal.c
+++ b/server/threadlocal.c
@@ -195,13 +195,16 @@ threadlocal_buffer (size_t size)
if (threadlocal->buffer_size < size) {
void *ptr;
+ int err;
- ptr = realloc (threadlocal->buffer, size);
- if (ptr == NULL) {
+ err = posix_memalign...
2020 Aug 06
0
Re: [PATCH nbdkit] Experiment with parallel python plugin
...if (r == -1)
> break;
> count -= limit;
> }
>
> + free(zero_buffer);
> +
> done:
> if (r != -1 && need_flush)
> r = plugin_flush (b, handle, 0, err);
> diff --git a/server/threadlocal.c b/server/threadlocal.c
> index 90230028..04c82842 100644
> --- a/server/threadlocal.c
> +++ b/server/threadlocal.c
> @@ -195,13 +195,16 @@ threadlocal_buffer (size_t size)
>
> if (threadlocal->buffer_size < size) {
> void *ptr;
> + int err;
>
> - ptr = realloc (threadlocal->buffer, size);
>...