From babd5a27dc06143b3b8860eb121aa382e1315022 Mon Sep 17 00:00:00 2001 From: Stewart Smith Date: Thu, 29 Nov 2018 15:28:32 +1100 Subject: hdata/iohub.c: remove condition that was always true Caught by static analysis. The previous if() condition was ensuring lxr was not null, so we don't need this additional check. Signed-off-by: Stewart Smith --- hdata/iohub.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'hdata') diff --git a/hdata/iohub.c b/hdata/iohub.c index f37f5ab..e16fb0b 100644 --- a/hdata/iohub.c +++ b/hdata/iohub.c @@ -82,8 +82,7 @@ static bool io_get_lx_info(const void *kwvpd, unsigned int kwvpd_sz, return false; } - if (lxr) - memcpy(lxrbuf, lxr, sizeof(uint32_t)*2); + memcpy(lxrbuf, lxr, sizeof(uint32_t)*2); prlog(PR_DEBUG, "CEC: LXRn=%d LXR=%08x%08x\n", lx_idx, lxrbuf[0], lxrbuf[1]); prlog(PR_DEBUG, "CEC: LX Info added to %llx\n", (long long)hn); -- cgit v1.1