From f767f4acea7edde24a51d14963f9fe5718a6c70f Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Tue, 16 Jun 2026 15:12:16 -0400 Subject: [PATCH] Fix missing semicolon in mm session validate_sid handler PS_VALIDATE_SID_FUNC(mm) was missing the semicolon after the ps_mm_key_exists() assignment, so ext/session/mod_mm.c failed to compile under --with-mm. The file is gated behind HAVE_LIBMM, so default builds and CI never exercised it. Closes GH-22336 --- ext/session/mod_mm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/session/mod_mm.c b/ext/session/mod_mm.c index ff8664c981a0..70000f5ca848 100644 --- a/ext/session/mod_mm.c +++ b/ext/session/mod_mm.c @@ -481,7 +481,7 @@ PS_VALIDATE_SID_FUNC(mm) PS_MM_DATA; mm_lock(data->mm, MM_LOCK_RD); - zend_result ret = ps_mm_key_exists(data, key) + zend_result ret = ps_mm_key_exists(data, key); mm_unlock(data->mm); return ret; }