mirror of
https://github.com/hardkernel/linux.git
synced 2026-04-02 03:03:00 +09:00
xc2028: unlock on error in xc2028_set_config()
commit210bd104c6upstream. We have to unlock before returning -ENOMEM. Fixes:8dfbcc4351('[media] xc2028: avoid use after free') Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
716bcfeb12
commit
bd2d6cb00d
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user