Bug 2348622 (CVE-2024-57978) - CVE-2024-57978 kernel: media: imx-jpeg: Fix potential error pointer dereference in detach_pm()
Summary: CVE-2024-57978 kernel: media: imx-jpeg: Fix potential error pointer dereferen...
Keywords:
Status: NEW
Alias: CVE-2024-57978
Product: Security Response
Classification: Other
Component: vulnerability
Version: unspecified
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Product Security DevOps Team
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2025-02-27 03:05 UTC by OSIDB Bzimport
Modified: 2025-03-16 12:25 UTC (History)
4 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed:
Embargoed:


Attachments (Terms of Use)

Description OSIDB Bzimport 2025-02-27 03:05:27 UTC
In the Linux kernel, the following vulnerability has been resolved:

media: imx-jpeg: Fix potential error pointer dereference in detach_pm()

The proble is on the first line:

	if (jpeg->pd_dev[i] && !pm_runtime_suspended(jpeg->pd_dev[i]))

If jpeg->pd_dev[i] is an error pointer, then passing it to
pm_runtime_suspended() will lead to an Oops.  The other conditions
check for both error pointers and NULL, but it would be more clear to
use the IS_ERR_OR_NULL() check for that.


Note You need to log in before you can comment on or make changes to this bug.