This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch devs/devilhorns/apos
in repository efl.
View the commit online.
commit f334bd200eb49613b15f67bc89f4b8712cdc693c
Author: Christopher Michael <[email protected]>
AuthorDate: Fri Jan 23 12:27:02 2026 -0600
ecore_drm2: Check for valid pending state before applying display
changes
---
src/lib/ecore_drm2/ecore_drm2_displays.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/lib/ecore_drm2/ecore_drm2_displays.c b/src/lib/ecore_drm2/ecore_drm2_displays.c
index 0585a42a02..8723d5420f 100644
--- a/src/lib/ecore_drm2/ecore_drm2_displays.c
+++ b/src/lib/ecore_drm2/ecore_drm2_displays.c
@@ -1508,7 +1508,9 @@ ecore_drm2_display_changes_apply(Ecore_Drm2_Display *disp)
EINA_SAFETY_ON_NULL_RETURN_VAL(disp->conn, EINA_FALSE);
cstate = disp->state.current;
+
pstate = disp->state.pending;
+ EINA_SAFETY_ON_NULL_RETURN_VAL(pstate, EINA_FALSE);
if (pstate->changes & ECORE_DRM2_DISPLAY_STATE_GAMMA)
{
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.