Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d2b805d8 authored by Wei Yongjun's avatar Wei Yongjun Committed by Jens Axboe
Browse files

cciss: fix invalid use of sizeof in cciss_find_cfgtables()



sizeof() when applied to a pointer typed expression gives the
size of the pointer, not that of the pointed data.

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: default avatar <scameron@beardog.cce.hp.com>
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 8761a3dc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4206,7 +4206,7 @@ static int cciss_find_cfgtables(ctlr_info_t *h)
	if (rc)
		return rc;
	h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev,
		cfg_base_addr_index) + cfg_offset, sizeof(h->cfgtable));
		cfg_base_addr_index) + cfg_offset, sizeof(*h->cfgtable));
	if (!h->cfgtable)
		return -ENOMEM;
	rc = write_driver_ver_to_cfgtable(h->cfgtable);