dmaengine: dw-axi-dmac: fix null dereference when pointer first is null
authorColin Ian King <colin.king@canonical.com>
Wed, 8 May 2019 22:33:29 +0000 (23:33 +0100)
committerVinod Koul <vkoul@kernel.org>
Tue, 21 May 2019 08:55:52 +0000 (14:25 +0530)
In the unlikely event that axi_desc_get returns a null desc in the
very first iteration of the while-loop the error exit path ends
up calling axi_desc_put on a null pointer 'first' and this causes
a null pointer dereference.  Fix this by adding a null check on
pointer 'first' before calling axi_desc_put.

Addresses-Coverity: ("Explicit null dereference")
Fixes: 1fe20f1b8454 ("dmaengine: Introduce DW AXI DMAC driver")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c

index b2ac1d2..a1ce307 100644 (file)
@@ -512,7 +512,8 @@ dma_chan_prep_dma_memcpy(struct dma_chan *dchan, dma_addr_t dst_adr,
        return vchan_tx_prep(&chan->vc, &first->vd, flags);
 
 err_desc_get:
-       axi_desc_put(first);
+       if (first)
+               axi_desc_put(first);
        return NULL;
 }