util/coroutine: fix -Werror=maybe-uninitialized false-positive
../util/qemu-coroutine.c:150:8: error: ‘batch’ may be used uninitialized [-Werror=maybe-uninitialized] Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
parent
062cfce8d4
commit
25bc7d16fa
@ -136,7 +136,7 @@ static Coroutine *coroutine_pool_get_local(void)
|
|||||||
static void coroutine_pool_refill_local(void)
|
static void coroutine_pool_refill_local(void)
|
||||||
{
|
{
|
||||||
CoroutinePool *local_pool = get_ptr_local_pool();
|
CoroutinePool *local_pool = get_ptr_local_pool();
|
||||||
CoroutinePoolBatch *batch;
|
CoroutinePoolBatch *batch = NULL;
|
||||||
|
|
||||||
WITH_QEMU_LOCK_GUARD(&global_pool_lock) {
|
WITH_QEMU_LOCK_GUARD(&global_pool_lock) {
|
||||||
batch = QSLIST_FIRST(&global_pool);
|
batch = QSLIST_FIRST(&global_pool);
|
||||||
|
Loading…
Reference in New Issue
Block a user