[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <tencent_CA4766945C568E210AA2701525957F041007@qq.com>
Date: Fri, 18 Feb 2022 00:31:24 +0800
From: xkernel.wang@...mail.com
To: kishon@...com
Cc: lorenzo.pieralisi@....com, kw@...ux.com, bhelgaas@...gle.com,
linux-pci@...r.kernel.org, linux-kernel@...r.kernel.org,
Xiaoke Wang <xkernel.wang@...mail.com>
Subject: [PATCH] PCI: endpoint: functions/pci-epf-test: fix a potential memory leak
From: Xiaoke Wang <xkernel.wang@...mail.com>
In pci_epf_test_write(), there is an error path does not properly
release 'buf' which is allocated by kzalloc(). It is better to release
it by changing the target label of goto statement.
Signed-off-by: Xiaoke Wang <xkernel.wang@...mail.com>
---
drivers/pci/endpoint/functions/pci-epf-test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pci/endpoint/functions/pci-epf-test.c b/drivers/pci/endpoint/functions/pci-epf-test.c
index 90d84d3..41227dd 100644
--- a/drivers/pci/endpoint/functions/pci-epf-test.c
+++ b/drivers/pci/endpoint/functions/pci-epf-test.c
@@ -441,7 +441,7 @@ static int pci_epf_test_write(struct pci_epf_test *epf_test)
if (!epf_test->dma_supported) {
dev_err(dev, "Cannot transfer data using DMA\n");
ret = -EINVAL;
- goto err_map_addr;
+ goto err_dma_map;
}
src_phys_addr = dma_map_single(dma_dev, buf, reg->size,
--
Powered by blists - more mailing lists