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

Commit b2c41d48 authored by Dan Carpenter's avatar Dan Carpenter Committed by Min Chong
Browse files

UPSTREAM: [media] xc2028: unlock on error in xc2028_set_config()



(cherry picked from commit 210bd104c6acd31c3c6b8b075b3f12d4a9f6b60d)

We have to unlock before returning -ENOMEM.

Fixes: 8dfbcc4351a0 ('[media] xc2028: avoid use after free')

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
Change-Id: I7b6ba9fde5c6e29467e6de23d398af2fe56e2547
Bug: 30946097
parent 4c87fe2c
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -1407,8 +1407,10 @@ static int xc2028_set_config(struct dvb_frontend *fe, void *priv_cfg)
	memcpy(&priv->ctrl, p, sizeof(priv->ctrl));
	if (p->fname) {
		priv->ctrl.fname = kstrdup(p->fname, GFP_KERNEL);
		if (priv->ctrl.fname == NULL)
			return -ENOMEM;
		if (priv->ctrl.fname == NULL) {
			rc = -ENOMEM;
			goto unlock;
		}
	}

	/*
@@ -1440,6 +1442,7 @@ static int xc2028_set_config(struct dvb_frontend *fe, void *priv_cfg)
		} else
			priv->state = XC2028_WAITING_FIRMWARE;
	}
unlock:
	mutex_unlock(&priv->lock);

	return rc;