Skip to content

Properly initialize PS(mod) on RINIT #6795

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ext/session/session.c
Original file line number Diff line number Diff line change
Expand Up @@ -2856,7 +2856,8 @@ static int php_rinit_session(zend_bool auto_start) /* {{{ */
{
php_rinit_session_globals();

if (PS(mod) == NULL) {
PS(mod) = NULL;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need to also do this for PS(serializer) below?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's not necessary, since OnUpdateSerializer handles this (any unknown handler will set it to NULL). OnUpdateSaveHandler doesn't do this for user handlers (these are special, since they can only work for session_set_save_handler().

{
char *value;

value = zend_ini_string("session.save_handler", sizeof("session.save_handler") - 1, 0);
Expand Down