summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cmd/spi.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/spi.c b/cmd/spi.c
index 64c3ffcf42..f16ef9a5db 100644
--- a/cmd/spi.c
+++ b/cmd/spi.c
@@ -51,6 +51,8 @@ static int do_spi_xfer(int bus, int cs)
snprintf(name, sizeof(name), "generic_%d:%d", bus, cs);
str = strdup(name);
+ if (!str)
+ return -ENOMEM;
ret = spi_get_bus_and_cs(bus, cs, 1000000, mode, "spi_generic_drv",
str, &dev, &slave);
if (ret)