Skip to content
Snippets Groups Projects
Commit d39e74fd authored by Shailendra Verma's avatar Shailendra Verma Committed by Mauro Carvalho Chehab
Browse files

[media] Staging: media: platform: davinci: - Fix for memory leak


Fix to avoid possible memory leak if the decoder initialization got failed.
Free the allocated memory for file handle object before return in case
decoder initialization fails.

Signed-off-by: default avatarShailendra Verma <shailendra.v@samsung.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 30f895a9
Branches
No related tags found
No related merge requests found
...@@ -519,6 +519,8 @@ static int vpfe_open(struct file *file) ...@@ -519,6 +519,8 @@ static int vpfe_open(struct file *file)
if (!vpfe_dev->initialized) { if (!vpfe_dev->initialized) {
if (vpfe_initialize_device(vpfe_dev)) { if (vpfe_initialize_device(vpfe_dev)) {
mutex_unlock(&vpfe_dev->lock); mutex_unlock(&vpfe_dev->lock);
v4l2_fh_exit(&fh->fh);
kfree(fh);
return -ENODEV; return -ENODEV;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment