Browse Source

dma: of-dma.c: fix memory leakage

The memory allocated to ofdma might be a leakage when error occurs.

Signed-off-by: Cong Ding <dinggnu@gmail.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Cong Ding 12 years ago
parent
commit
e68b1130df
1 changed files with 1 additions and 0 deletions
  1. 1 0
      drivers/dma/of-dma.c

+ 1 - 0
drivers/dma/of-dma.c

@@ -107,6 +107,7 @@ int of_dma_controller_register(struct device_node *np,
 	if (!nbcells) {
 		pr_err("%s: #dma-cells property is missing or invalid\n",
 		       __func__);
+		kfree(ofdma);
 		return -EINVAL;
 	}