Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cf99d8a2 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "soc: qcom: spcom: fix NULL pointer dereference"

parents 0bde7079 2d9067a7
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2764,7 +2764,7 @@ static int spcom_probe(struct platform_device *pdev)
	ret = spcom_register_chardev();
	if (ret) {
		pr_err("create character device failed.\n");
		goto fail_reg_chardev;
		goto fail_while_chardev_reg;
	}

	link_info.glink_link_state_notif_cb = spcom_link_state_notif_cb;
@@ -2802,6 +2802,7 @@ static int spcom_probe(struct platform_device *pdev)
fail_reg_chardev:
	pr_err("Failed to init driver.\n");
	spcom_unregister_chrdev();
fail_while_chardev_reg:
	kfree(dev);
	spcom_dev = NULL;