Message ID | 20240725201211.460318-2-stefanha@redhat.com |
---|---|
State | New |
Headers | show |
Series | [PULL,1/1] util/async.c: Forbid negative min/max in aio_context_set_thread_pool_params() | expand |
diff --git a/util/async.c b/util/async.c index 0467890052..3e3e4fc712 100644 --- a/util/async.c +++ b/util/async.c @@ -746,7 +746,7 @@ void aio_context_set_thread_pool_params(AioContext *ctx, int64_t min, int64_t max, Error **errp) { - if (min > max || !max || min > INT_MAX || max > INT_MAX) { + if (min > max || max <= 0 || min < 0 || min > INT_MAX || max > INT_MAX) { error_setg(errp, "bad thread-pool-min/thread-pool-max values"); return; }