---
id: CVE-2024-26799
title: |-
  In the Linux kernel, the following vulnerability has been resolved:

  ASoC: qcom: Fix uninitialized pointer dmactl

  In the case where __lpass_get_dmactl_handle is called and the driver
  id dai_id is invalid the pointer dmactl is not being …
summary: |-
  In the Linux kernel, the following vulnerability has been resolved:

  ASoC: qcom: Fix uninitialized pointer dmactl

  In the case where __lpass_get_dmactl_handle is called and the driver
  id dai_id is invalid the pointer dmactl is not being …
severity: high
cvss: 7
cvssVector: 'CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H'
cwe:
  - CWE-824
vendor: linux
product: linux_kernel
affected:
  - 'linux_kernel >= 5.18, < 6.6.21'
  - 'linux_kernel >= 6.7, < 6.7.9'
  - linux_kernel = 6.8
patched:
  - linux_kernel 6.7.9
published: '2024-04-04'
updated: '2026-08-04'
source: NVD
sourceUrl: 'https://nvd.nist.gov/vuln/detail/CVE-2024-26799'
references:
  - url: 'https://git.kernel.org/stable/c/1382d8b55129875b2e07c4d2a7ebc790183769ee'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/99adc8b4d2f38bf0d06483ec845bc48f60c3f8cf'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/d5a7726e6ea62d447b79ab5baeb537ea6bdb225b'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/1382d8b55129875b2e07c4d2a7ebc790183769ee'
    label: af854a3a-2127-422b-91ae-364da2661108
  - url: 'https://git.kernel.org/stable/c/99adc8b4d2f38bf0d06483ec845bc48f60c3f8cf'
    label: af854a3a-2127-422b-91ae-364da2661108
  - url: 'https://git.kernel.org/stable/c/d5a7726e6ea62d447b79ab5baeb537ea6bdb225b'
    label: af854a3a-2127-422b-91ae-364da2661108
tags:
  - nvd
epss: 0.00239
epssPercentile: 0.13251
ingestedAt: '2026-08-05T10:46:49.093Z'
---

## Overview

In the Linux kernel, the following vulnerability has been resolved:

ASoC: qcom: Fix uninitialized pointer dmactl

In the case where __lpass_get_dmactl_handle is called and the driver
id dai_id is invalid the pointer dmactl is not being assigned a value,
and dmactl contains a garbage value since it has not been initialized
and so the null check may not work. Fix this to initialize dmactl to
NULL. One could argue that modern compilers will set this to zero, but
it is useful to keep this initialized as per the same way in functions
__lpass_platform_codec_intf_init and lpass_cdc_dma_daiops_hw_params.

Cleans up clang scan build warning:
sound/soc/qcom/lpass-cdc-dma.c:275:7: warning: Branch condition
evaluates to a garbage value [core.uninitialized.Branch]

## Affected

- `linux_kernel >= 5.18, < 6.6.21`
- `linux_kernel >= 6.7, < 6.7.9`
- `linux_kernel = 6.8`

## Remediation

Upgrade past the affected range:

- `linux_kernel 6.7.9`
