[PATCH 5.5 052/120] MIPS: Loongson: Fix potential NULL dereference in loongson3_platform_init()
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Date: 2020-02-13 15:40:48
Also in:
lkml, stable
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Date: 2020-02-13 15:40:48
Also in:
lkml, stable
From: Tiezhu Yang <yangtiezhu@loongson.cn>
commit 72d052e28d1d2363f9107be63ef3a3afdea6143c upstream.
If kzalloc fails, it should return -ENOMEM, otherwise may trigger a NULL
pointer dereference.
Fixes: 3adeb2566b9b ("MIPS: Loongson: Improve LEFI firmware interface")
Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
Signed-off-by: Paul Burton <paulburton@kernel.org>
Cc: Ralf Baechle <redacted>
Cc: Huacai Chen <redacted>
Cc: Jiaxun Yang <jiaxun.yang@flygoat.com>
Cc: linux-mips@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
arch/mips/loongson64/platform.c | 3 +++
1 file changed, 3 insertions(+)
--- a/arch/mips/loongson64/platform.c
+++ b/arch/mips/loongson64/platform.c@@ -27,6 +27,9 @@ static int __init loongson3_platform_ini continue; pdev = kzalloc(sizeof(struct platform_device), GFP_KERNEL); + if (!pdev) + return -ENOMEM; + pdev->name = loongson_sysconf.sensors[i].name; pdev->id = loongson_sysconf.sensors[i].id; pdev->dev.platform_data = &loongson_sysconf.sensors[i];