Commit 7147434249e for php.net
commit 7147434249e1de4e4688643d068e919d80f854b2
Author: Ilia Alshanetsky <ilia@ilia.ws>
Date: Tue Jun 16 15:12:16 2026 -0400
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
diff --git a/ext/session/mod_mm.c b/ext/session/mod_mm.c
index ff8664c981a..70000f5ca84 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;
}