CVE-2026-72452: drm/i915: clear CRTC color blob pointers after dropping refs
In the Linux kernel, the following vulnerability has been resolved:
drm/i915: clear CRTC color blob pointers after dropping refs
intelcrtcputcolorblobs() drops the CRTC color blob references, but leaves the corresponding pointers unchanged.
This can matter in intelcrtcprepareclearedstate(), which frees the old CRTC hw state before calling inteldptunnelatomicclearstreambw(). The latter can fail while looking up the DP tunnel group state, for example with -EDEADLK.
If that happens, the function returns without completing the cleared state preparation. The failed atomic state will then be cleared by the atomic core and intelcrtcfreehwstate() can be called again for the same state, dropping the same blob references again.
Clear the blob pointers after dropping the references so repeated cleanup of the same CRTC hw state is safe.
(cherry picked from commit d5005addb5f68e8a0edce249506757bdc9e3d8c8)