Skip to content

Commit 7147434

Browse files
committed
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
1 parent 570c15a commit 7147434

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ext/session/mod_mm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ PS_VALIDATE_SID_FUNC(mm)
481481
PS_MM_DATA;
482482

483483
mm_lock(data->mm, MM_LOCK_RD);
484-
zend_result ret = ps_mm_key_exists(data, key)
484+
zend_result ret = ps_mm_key_exists(data, key);
485485
mm_unlock(data->mm);
486486
return ret;
487487
}

0 commit comments

Comments
 (0)