Skip to content
Snippets Groups Projects
Commit 224d8031 authored by Shunyong Yang's avatar Shunyong Yang Committed by Lorenzo Pieralisi
Browse files

tools: PCI: Zero-initialize param

The values in param may be random if they are not initialized, which
may cause use_dma flag set even when "-d" option is not provided
in command line. Initializing all members to 0 to solve this.

Link: https://lore.kernel.org/r/20210714132331.5200-1-yang.shunyong@gmail.com


Signed-off-by: default avatarShunyong Yang <yang.shunyong@gmail.com>
Signed-off-by: default avatarLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Acked-by: default avatarKishon Vijay Abraham I <kishon@ti.com>
parent e73f0f0e
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ struct pci_test {
static int run_test(struct pci_test *test)
{
struct pci_endpoint_test_xfer_param param;
struct pci_endpoint_test_xfer_param param = {};
int ret = -EINVAL;
int fd;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment