media: staging/intel-ipu3: Fix memory leak in imu_fmt
commit3630901933upstream. We are losing the reference to an allocated memory if try. Change the order of the check to avoid that. Cc: stable@vger.kernel.org Fixes:6d5f26f2e0("media: staging/intel-ipu3-v4l: reduce kernel stack usage") Signed-off-by: Ricardo Ribalda <ribalda@chromium.org> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8acb13189d
commit
517f6f5705
1 changed files with 7 additions and 4 deletions
|
|
@ -693,6 +693,13 @@ static int imgu_fmt(struct imgu_device *imgu, unsigned int pipe, int node,
|
|||
if (inode == IMGU_NODE_STAT_3A || inode == IMGU_NODE_PARAMS)
|
||||
continue;
|
||||
|
||||
/* CSS expects some format on OUT queue */
|
||||
if (i != IPU3_CSS_QUEUE_OUT &&
|
||||
!imgu_pipe->nodes[inode].enabled) {
|
||||
fmts[i] = NULL;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (try) {
|
||||
fmts[i] = kmemdup(&imgu_pipe->nodes[inode].vdev_fmt.fmt.pix_mp,
|
||||
sizeof(struct v4l2_pix_format_mplane),
|
||||
|
|
@ -705,10 +712,6 @@ static int imgu_fmt(struct imgu_device *imgu, unsigned int pipe, int node,
|
|||
fmts[i] = &imgu_pipe->nodes[inode].vdev_fmt.fmt.pix_mp;
|
||||
}
|
||||
|
||||
/* CSS expects some format on OUT queue */
|
||||
if (i != IPU3_CSS_QUEUE_OUT &&
|
||||
!imgu_pipe->nodes[inode].enabled)
|
||||
fmts[i] = NULL;
|
||||
}
|
||||
|
||||
if (!try) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue