[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 10/22] hw/sdhci: fix -Werror=maybe-uninitialized false-positiv
From: |
marcandre . lureau |
Subject: |
[PATCH v2 10/22] hw/sdhci: fix -Werror=maybe-uninitialized false-positive |
Date: |
Tue, 24 Sep 2024 17:05:41 +0400 |
From: Marc-André Lureau <marcandre.lureau@redhat.com>
../hw/sd/sdhci.c:846:16: error: ‘res’ may be used uninitialized
[-Werror=maybe-uninitialized]
False-positive, because "length" is non-null.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
hw/sd/sdhci.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/sd/sdhci.c b/hw/sd/sdhci.c
index 87122e4245..ed01499391 100644
--- a/hw/sd/sdhci.c
+++ b/hw/sd/sdhci.c
@@ -747,7 +747,7 @@ static void sdhci_do_adma(SDHCIState *s)
const uint16_t block_size = s->blksize & BLOCK_SIZE_MASK;
const MemTxAttrs attrs = { .memory = true };
ADMADescr dscr = {};
- MemTxResult res;
+ MemTxResult res = MEMTX_ERROR;
int i;
if (s->trnmod & SDHC_TRNS_BLK_CNT_EN && !s->blkcnt) {
--
2.45.2.827.g557ae147e6
- [PATCH v2 04/22] nbd: fix -Werror=maybe-uninitialized false-positive, (continued)
- [PATCH v2 04/22] nbd: fix -Werror=maybe-uninitialized false-positive, marcandre . lureau, 2024/09/24
- [PATCH v2 06/22] block/mirror: fix -Werror=maybe-uninitialized false-positive, marcandre . lureau, 2024/09/24
- [PATCH v2 05/22] block/mirror: fix -Werror=maybe-uninitialized false-positive, marcandre . lureau, 2024/09/24
- [PATCH v2 07/22] block/stream: fix -Werror=maybe-uninitialized false-positives, marcandre . lureau, 2024/09/24
- [PATCH v2 09/22] hw/vhost-scsi: fix -Werror=maybe-uninitialized, marcandre . lureau, 2024/09/24
- [PATCH v2 08/22] hw/ahci: fix -Werror=maybe-uninitialized false-positive, marcandre . lureau, 2024/09/24
- [PATCH v2 10/22] hw/sdhci: fix -Werror=maybe-uninitialized false-positive,
marcandre . lureau <=
- [PATCH v2 12/22] migration: fix -Werror=maybe-uninitialized false-positives, marcandre . lureau, 2024/09/24
- [PATCH v2 11/22] block/block-copy: fix -Werror=maybe-uninitialized false-positive, marcandre . lureau, 2024/09/24
- [PATCH v2 16/22] target/loongarch: fix -Werror=maybe-uninitialized false-positive, marcandre . lureau, 2024/09/24
- [PATCH v2 13/22] hw/virtio-blk: fix -Werror=maybe-uninitialized false-positive, marcandre . lureau, 2024/09/24
- [PATCH v2 15/22] linux-user/hppa: fix -Werror=maybe-uninitialized false-positive, marcandre . lureau, 2024/09/24
- [PATCH v2 18/22] hw/virtio: fix -Werror=maybe-uninitialized false-positive, marcandre . lureau, 2024/09/24