Skip to content

Commit

Permalink
tools: PCI: Zero-initialize param
Browse files Browse the repository at this point in the history
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: Shunyong Yang <yang.shunyong@gmail.com>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Acked-by: Kishon Vijay Abraham I <kishon@ti.com>
  • Loading branch information
Shunyong Yang authored and Lorenzo Pieralisi committed Aug 5, 2021
1 parent e73f0f0 commit 224d803
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/pci/pcitest.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 224d803

Please sign in to comment.