mirror of
https://github.com/xemu-project/xemu.git
synced 2025-04-02 11:11:48 -04:00
hw/sdhci: fix -Werror=maybe-uninitialized false-positive
../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> Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
This commit is contained in:
parent
fa7e5e9e1c
commit
ea34d1dd96
1 changed files with 1 additions and 1 deletions
|
@ -747,7 +747,7 @@ static void sdhci_do_adma(SDHCIState *s)
|
||||||
const uint16_t block_size = s->blksize & BLOCK_SIZE_MASK;
|
const uint16_t block_size = s->blksize & BLOCK_SIZE_MASK;
|
||||||
const MemTxAttrs attrs = { .memory = true };
|
const MemTxAttrs attrs = { .memory = true };
|
||||||
ADMADescr dscr = {};
|
ADMADescr dscr = {};
|
||||||
MemTxResult res;
|
MemTxResult res = MEMTX_ERROR;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (s->trnmod & SDHC_TRNS_BLK_CNT_EN && !s->blkcnt) {
|
if (s->trnmod & SDHC_TRNS_BLK_CNT_EN && !s->blkcnt) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue