CVE-2026-53213 PUBLISHED

drm/vc4: fix krealloc() memory leak

Assigner: Linux
Reserved: 09.06.2026 Published: 25.06.2026 Updated: 25.06.2026

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

drm/vc4: fix krealloc() memory leak

Don't just overwrite the original pointer passed to krealloc() with its return value without checking latter:

<pre>MEM = krealloc(MEM, SZ, GFP); </pre>

If krealloc() returns NULL, that erases the pointer to the still allocated memory, hence leaks this memory. Instead, use a temporary variable, check it's not NULL and only then assign it to the original pointer:

<pre>TMP = krealloc(MEM, SZ, GFP); if (!TMP) return; MEM = TMP; </pre>

While on it, use krealloc_array().

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from 6d45c81d229d71da54d374143e7d6abad4c0cf31 to 30165a09f76eaf34951c818eb5d9d6e4771d76f6 (excl.)
  • affected from 6d45c81d229d71da54d374143e7d6abad4c0cf31 to fd87d6966041e33ef7d2e5dc59f9a52b71c6ae5f (excl.)
  • affected from 6d45c81d229d71da54d374143e7d6abad4c0cf31 to e0ce103e89d61eef70edc1d1ae3bfd4c0aacbc2e (excl.)
  • affected from 6d45c81d229d71da54d374143e7d6abad4c0cf31 to c034aa0b1ba5f49cbdf8ef193d6ec714d74aac27 (excl.)
  • affected from 6d45c81d229d71da54d374143e7d6abad4c0cf31 to 02f5e4db57c0cdd7bac89d503b301a093a0fa95c (excl.)
  • affected from 6d45c81d229d71da54d374143e7d6abad4c0cf31 to 4fc692dc6df5bc777cc1bcebf95179e28594875f (excl.)
  • affected from 6d45c81d229d71da54d374143e7d6abad4c0cf31 to 5d563a5da8717629ae72f9eadf1e0e340bd1658b (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 4.8 is affected
  • unaffected from 0 to 4.8 (excl.)
  • unaffected from 5.15.210 to 5.15.* (incl.)
  • unaffected from 6.1.176 to 6.1.* (incl.)
  • unaffected from 6.6.143 to 6.6.* (incl.)
  • unaffected from 6.12.94 to 6.12.* (incl.)
  • unaffected from 6.18.36 to 6.18.* (incl.)
  • unaffected from 7.0.13 to 7.0.* (incl.)
  • unaffected from 7.1 to * (incl.)

References