qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 1/1] register: Remove unnecessary NULL check
@ 2020-10-02 15:33 Alistair Francis
  2020-10-02 15:55 ` Eduardo Habkost
  0 siblings, 1 reply; 3+ messages in thread
From: Alistair Francis @ 2020-10-02 15:33 UTC (permalink / raw)
  To: qemu-devel, ehabkost; +Cc: peter.maydell, alistair.francis, f4bug, alistair23

This patch fixes CID 1432800 by removing an unnecessary check.

Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
---
 hw/core/register.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/core/register.c b/hw/core/register.c
index 31038bd7cc..9ac9bc6bfe 100644
--- a/hw/core/register.c
+++ b/hw/core/register.c
@@ -258,7 +258,7 @@ static RegisterInfoArray *register_init_block(DeviceState *owner,
         int index = rae[i].addr / data_size;
         RegisterInfo *r = &ri[index];
 
-        if (data + data_size * index == 0 || !&rae[i]) {
+        if (!&rae[i]) {
             continue;
         }
 
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-10-02 16:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-02 15:33 [PATCH v1 1/1] register: Remove unnecessary NULL check Alistair Francis
2020-10-02 15:55 ` Eduardo Habkost
2020-10-02 15:51   ` Alistair Francis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).